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