Files
2023-01-03 00:04:38 +00:00

6 lines
143 B
Docker

FROM nginxinc/nginx-unprivileged:1.23.2-alpine
COPY ./build /usr/share/nginx/html
EXPOSE 8080
# start nginx
CMD ["nginx", "-g", "daemon off;"]