website/.devcontainer/Dockerfile

8 lines
308 B
Docker
Raw Normal View History

FROM alpine:edge
2021-09-10 20:46:58 +02:00
RUN apk update && \
apk upgrade && \
2022-01-30 09:28:57 +01:00
apk add nodejs yarn php8 php8-mysqli php8-mbstring php8-curl php8-simplexml git nano composer openssh-client curl gpg && \
2021-10-30 09:12:31 +02:00
ln -s /usr/bin/php8 /usr/bin/php && \
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"