nise/nise-replay-viewer/Dockerfile

11 lines
195 B
Docker
Raw Normal View History

2024-03-03 15:22:03 +00:00
FROM openresty/openresty:focal
RUN rm -rf /usr/share/nginx/html/*
COPY dist/ /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]