arp-spoofing/docker/apache2/dockerfile
2025-01-21 08:54:23 +01:00

5 lines
No EOL
159 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"]