8 lines
No EOL
162 B
Text
8 lines
No EOL
162 B
Text
FROM ubuntu:lastest AS webserver
|
|
RUN apt-get update && apt-get install -y apache2
|
|
|
|
WORKDIR /var/www/html
|
|
COPY ./public/ .
|
|
|
|
|
|
CMD ["apache2ctl", "-D", "FOREGROUND"] |