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