Compare commits

..

No commits in common. "a8d6645eee2fa59aa3683aca3b6e2f48fb3cef60" and "e5c9250991d4c415ed76e38779beddf4d46b525f" have entirely different histories.

View file

@ -1,9 +1,5 @@
FROM ubuntu:lastest AS webserver FROM ubuntu:lastest AS webserver
RUN apt-get update && apt-get install -y apache2 RUN apt-get update && apt-get install -y apache2
RUN apt-get update && apt-get install -y apache2 openssl ca-certificates \
&& openssl req -nodes -newkey rsa:2048 -sha256 -keyout private-rsa.key -out certifactes.csr
WORKDIR /var/www/html WORKDIR /var/www/html
COPY ./public/ . COPY ./public/ .
CMD ["apache2ctl", "-D", "FOREGROUND"] CMD ["apache2ctl", "-D", "FOREGROUND"]