mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 16:54:06 +02:00
11 lines
252 B
Docker
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 |