7 lines
No EOL
193 B
Text
7 lines
No EOL
193 B
Text
FROM debian:stable-slim
|
|
RUN apt-get update \
|
|
&& apt-get install -y apache2 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /var/www/html
|
|
COPY ./public/ .
|
|
CMD ["apache2ctl", "-D", "FOREGROUND"] |