nise/nise-replay-viewer/Dockerfile

11 lines
189 B
Docker
Raw Permalink Normal View History

FROM nginx:1.27.0-alpine
2024-03-03 15:22:03 +00:00
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;"]