5 lines
138 B
Docker
5 lines
138 B
Docker
FROM nginx:1.16.0-alpine
|
|
COPY default.conf /etc/nginx/conf.d
|
|
COPY build /usr/share/nginx/html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"] |