mirror of
https://github.com/Oxbian/SIDPS.git
synced 2025-05-18 06:28:21 +02:00
10 lines
265 B
Docker
10 lines
265 B
Docker
FROM httpd:alpine
|
|
|
|
# Installation des paquets nécessaire pour le routage
|
|
RUN apk -U upgrade && apk add --no-cache iproute2
|
|
|
|
COPY Demo/Dockerfiles/cible-entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["httpd-foreground"]
|