website/.devcontainer/Dockerfile

7 lines
203 B
Docker
Raw Normal View History

2021-09-10 20:46:58 +02:00
FROM alpine:latest
RUN apk update && \
apk upgrade && \
2021-09-10 20:47:56 +02:00
apk add nodejs yarn php8 php8-mysqli php8-mbstring git nano composer && \
2021-09-10 20:46:58 +02:00
echo "alias php=php8" >> /etc/profile
ENV ENV="/etc/profile"