seedling/source/ui/docker/Dockerfile
Mr. Renovate 5422364f94
Some checks are pending
forgejo/Procyon/seedling/pipeline/head Build queued...
Update nginx Docker tag to v1.25.3
2023-11-22 13:29:44 +01:00

12 lines
211 B
Docker

FROM nginx:1.25.3-alpine
RUN mkdir app
RUN mkdir -p /run/nginx
COPY build /app
COPY docker/nginx/conf.d/ /etc/nginx/conf.d/
EXPOSE 80
VOLUME [ "/etc/nginx/conf.d" ]
ENTRYPOINT ["nginx", "-g", "daemon off;"]