mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01: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"]
|