website/.devcontainer/Dockerfile

7 lines
218 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:49:15 +02:00
apk add nodejs yarn php8 php8-mysqli php8-mbstring git nano composer openssh-client && \
2021-09-10 20:46:58 +02:00
echo "alias php=php8" >> /etc/profile
ENV ENV="/etc/profile"