mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
* Create Build-Release action * added common action * updated branch-build-ee * fixed branch-build-ee * fix action * fix * fix build * action yaml fix * fixes to monitor dockerfile for warnings * updated releaser-ee * added harbor push check in action * fix: removing preview branch from ee workflow --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
11 lines
256 B
Docker
11 lines
256 B
Docker
FROM nginx:1.25.0-alpine
|
|
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
COPY nginx.conf.template /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"]
|