8 lines
No EOL
304 B
Docker
8 lines
No EOL
304 B
Docker
FROM alpine:edge
|
|
RUN apk update && \
|
|
apk upgrade && \
|
|
apk add nodejs yarn php8 php8-mysqli php8-mbstring php8-curl php8-simplexml git nano composer openssh-client curl && \
|
|
ln -s /usr/bin/php8 /usr/bin/php && \
|
|
curl -L https://unpkg.com/@pnpm/self-installer | node
|
|
|
|
ENV ENV="/etc/profile" |