mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 03:47:54 +01:00
* refactor: update build scripts and supervisor configuration * Changed Caddyfile source in build.sh to use Caddyfile.aio.ce * Updated Dockerfile to copy web assets from the correct directory * Modified supervisor.conf to remove web and admin program configurations, and updated space program command to use react-router-serve * chore: remove obsolete Caddyfile.aio.ce configuration * chore: clean up Dockerfile by removing redundant cache removal command * fix: update live program command to use .mjs extension in supervisor configuration * fix: update live program command in supervisor configuration to remove .mjs extension * fix: update reverse proxy ports in Caddyfile.aio.ce configuration * fix: correct reverse proxy addresses in Caddyfile.aio.ce configuration * refactor: remove outdated reverse proxy address updates from build script
67 lines
2.1 KiB
Docker
67 lines
2.1 KiB
Docker
ARG PLANE_VERSION=v0.27.1
|
|
FROM --platform=$BUILDPLATFORM tonistiigi/binfmt AS binfmt
|
|
|
|
# **************************************************
|
|
# STAGE 0: Image Loading
|
|
# **************************************************
|
|
FROM node:22-alpine AS node
|
|
|
|
FROM artifacts.plane.so/makeplane/plane-frontend:${PLANE_VERSION} AS web-img
|
|
FROM artifacts.plane.so/makeplane/plane-backend:${PLANE_VERSION} AS backend-img
|
|
FROM artifacts.plane.so/makeplane/plane-space:${PLANE_VERSION} AS space-img
|
|
FROM artifacts.plane.so/makeplane/plane-admin:${PLANE_VERSION} AS admin-img
|
|
FROM artifacts.plane.so/makeplane/plane-live:${PLANE_VERSION} AS live-img
|
|
FROM artifacts.plane.so/makeplane/plane-proxy:${PLANE_VERSION} AS proxy-img
|
|
|
|
# **************************************************
|
|
# STAGE 1: Runner
|
|
# **************************************************
|
|
FROM python:3.12.10-alpine AS runner
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk add --no-cache \
|
|
"libpq" \
|
|
"libxslt" \
|
|
"xmlsec"
|
|
|
|
|
|
COPY --from=node /usr/lib /usr/lib
|
|
COPY --from=node /usr/local/lib /usr/local/lib
|
|
COPY --from=node /usr/local/include /usr/local/include
|
|
COPY --from=node /usr/local/bin /usr/local/bin
|
|
|
|
COPY --from=web-img /usr/share/nginx/html /app/web
|
|
COPY --from=space-img /app /app/space
|
|
COPY --from=admin-img /usr/share/nginx/html/god-mode /app/admin
|
|
COPY --from=live-img /app /app/live
|
|
|
|
RUN rm -rf /app/space/apps/space/.next/cache
|
|
|
|
COPY --from=proxy-img /usr/bin/caddy /usr/bin/caddy
|
|
COPY dist/Caddyfile /app/proxy/Caddyfile
|
|
|
|
COPY --from=backend-img /code /app/backend
|
|
COPY --from=backend-img /usr/local/lib/python3.12/site-packages/ /usr/local/lib/python3.12/site-packages/
|
|
COPY --from=backend-img /usr/local/bin/ /usr/local/bin/
|
|
|
|
RUN apk add --no-cache nss-tools bash curl uuidgen ncdu vim
|
|
|
|
RUN pip install supervisor
|
|
RUN mkdir -p /etc/supervisor/conf.d
|
|
|
|
COPY start.sh /app/start.sh
|
|
COPY dist/plane.env /app/plane.env
|
|
COPY supervisor.conf /etc/supervisor/conf.d/supervisor.conf
|
|
|
|
RUN mkdir -p /app/logs/access && \
|
|
mkdir -p /app/logs/error && \
|
|
mkdir -p /app/data && \
|
|
chmod +x /app/start.sh
|
|
|
|
VOLUME ['/app/data', '/app/logs']
|
|
|
|
EXPOSE 80 443
|
|
|
|
CMD ["/app/start.sh"]
|