website/.devcontainer/Dockerfile

7 lines
249 B
Docker
Raw Normal View History

2021-09-10 20:46:58 +02:00
FROM alpine:latest
RUN apk update && \
apk upgrade && \
2021-09-26 00:37:46 +02:00
apk add nodejs yarn php8 php8-mysqli php8-mbstring php8-curl git nano composer openssh-client curl && \
2021-09-26 00:27:44 +02:00
curl -L https://unpkg.com/@pnpm/self-installer | node
2021-09-10 20:46:58 +02:00
ENV ENV="/etc/profile"