Files
element-call/Dockerfile
T

11 lines
167 B
Docker
Raw Normal View History

2021-12-20 18:43:45 +00:00
FROM nginxinc/nginx-unprivileged:alpine
2021-12-20 16:58:37 +00:00
2023-01-03 10:48:48 +00:00
COPY ./dist /app
COPY config/nginx.conf /etc/nginx/conf.d/default.conf
2021-12-20 16:58:37 +00:00
2021-12-20 20:05:05 +00:00
USER root
RUN rm -rf /usr/share/nginx/html
USER 101