skantravels/Mobile/build/web/Dockerfile

11 lines
252 B
Docker
Raw Normal View History

2024-08-05 08:00:16 +01:00
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