11 lines
206 B
Docker
11 lines
206 B
Docker
FROM nginx:alpine [cite: 1]
|
|
|
|
RUN rm -rf /usr/share/nginx/html/*
|
|
|
|
COPY webapp/ /usr/share/nginx/html
|
|
|
|
COPY vhost.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80 [cite: 1]
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |