forked from github/plane
5c7382d894
* fix: environment file missing for space * dev: remove container name from the docker-compose local * dockerfile.dev modified for volumes * local dev fixes --------- Co-authored-by: Manish Gupta <manish@mgupta.me>
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"]
|