mousa / Dockerfile.txt
mfoud444's picture
first commit
d31a6aa
raw
history blame
No virus
146 Bytes
FROM php:apache
WORKDIR /var/www/html
COPY web .
ENV PORT=8000
EXPOSE ${PORT}
RUN sed -i 's/Listen 80/Listen ${PORT}/' /etc/apache2/ports.conf