mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
11 lines
253 B
Docker
11 lines
253 B
Docker
|
FROM nginx:1.25.0-alpine
|
||
|
|
||
|
RUN rm /etc/nginx/conf.d/default.conf
|
||
|
COPY nginx.conf.dev /etc/nginx/nginx.conf.template
|
||
|
|
||
|
COPY ./env.sh /docker-entrypoint.sh
|
||
|
|
||
|
RUN chmod +x /docker-entrypoint.sh
|
||
|
# Update all environment variables
|
||
|
CMD ["/docker-entrypoint.sh"]
|