github-classroom[bot] d79b183027 Initial commit
2025-01-21 11:00:40 +01:00

11 lines
252 B
Docker

FROM nginx:alpine
# Copy the config files
ADD ./conf/ /etc/nginx/
# Clears the static files
RUN rm -rf /usr/share/nginx/html
# Copy the static web content
ADD . /usr/share/nginx/html
# Suggests to bind port 80 to any port of the host system
EXPOSE 80