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 |