summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: abbf9b5da2f33e4167098177aee59a04b986df69 (plain)
1
2
3
4
5
6
FROM debian:stable-slim
RUN apt update && apt install -y php-cli
COPY www /var/www
ENV PASSWD="password123"
WORKDIR /var/www
ENTRYPOINT ["php", "-S", "0.0.0.0:5000"]