7 lines
No EOL
218 B
Docker
7 lines
No EOL
218 B
Docker
FROM alpine:latest
|
|
RUN apk update && \
|
|
apk upgrade && \
|
|
apk add nodejs yarn php8 php8-mysqli php8-mbstring git nano composer openssh-client && \
|
|
echo "alias php=php8" >> /etc/profile
|
|
|
|
ENV ENV="/etc/profile" |