77 lines
2.5 KiB
Docker
77 lines
2.5 KiB
Docker
FROM node:20-alpine
|
|
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.pre-check="scripts/watchtower-hooks/pre-check.sh"
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.pre-update="scripts/watchtower-hooks/pre-update.sh"
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.post-update="scripts/watchtower-hooks/post-update.sh"
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.post-check="scripts/watchtower-hooks/post-check.sh"
|
|
|
|
WORKDIR /app
|
|
|
|
ENV PORT=4001
|
|
ENV COUCH_DB_URL=https://couchdb.budi.live:5984
|
|
ENV BUDIBASE_ENVIRONMENT=PRODUCTION
|
|
ENV SERVICE=app-service
|
|
ENV POSTHOG_TOKEN=phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU
|
|
ENV ACCOUNT_PORTAL_URL=https://account.budibase.app
|
|
ENV TOP_LEVEL_PATH=/
|
|
|
|
# handle node-gyp and install postgres client for pg_dump utils
|
|
RUN apk add --no-cache \
|
|
g++ \
|
|
make \
|
|
python3 \
|
|
jq \
|
|
bash \
|
|
postgresql-client \
|
|
git
|
|
|
|
RUN yarn global add pm2
|
|
|
|
WORKDIR /
|
|
|
|
COPY scripts/removeWorkspaceDependencies.sh scripts/removeWorkspaceDependencies.sh
|
|
RUN chmod +x ./scripts/removeWorkspaceDependencies.sh
|
|
|
|
WORKDIR /app
|
|
COPY packages/server/package.json .
|
|
COPY packages/server/dist/yarn.lock .
|
|
|
|
COPY scripts/removeWorkspaceDependencies.sh scripts/removeWorkspaceDependencies.sh
|
|
RUN chmod +x ./scripts/removeWorkspaceDependencies.sh
|
|
RUN ./scripts/removeWorkspaceDependencies.sh package.json
|
|
|
|
# Install yarn packages with caching
|
|
ARG TARGETPLATFORM
|
|
RUN --mount=type=cache,target=/root/.yarn/${TARGETPLATFORM} YARN_CACHE_FOLDER=/root/.yarn/${TARGETPLATFORM} yarn install --production \
|
|
&& yarn cache clean \
|
|
&& apk del g++ make python3 jq \
|
|
&& rm -rf /tmp/* /root/.node-gyp /usr/local/lib/node_modules/npm/node_modules/node-gyp
|
|
|
|
COPY packages/server/dist/ dist/
|
|
COPY packages/server/docker_run.sh .
|
|
COPY packages/server/builder/ builder/
|
|
COPY packages/server/client/ client/
|
|
COPY packages/server/pm2.config.js .
|
|
|
|
ARG BUDIBASE_VERSION
|
|
ARG GIT_COMMIT_SHA
|
|
# Ensuring the version argument is sent
|
|
RUN test -n "$BUDIBASE_VERSION"
|
|
ENV BUDIBASE_VERSION=$BUDIBASE_VERSION
|
|
ENV DD_GIT_REPOSITORY_URL=https://github.com/budibase/budibase
|
|
ENV DD_GIT_COMMIT_SHA=$GIT_COMMIT_SHA
|
|
ENV DD_VERSION=$BUDIBASE_VERSION
|
|
|
|
EXPOSE 4001
|
|
|
|
# have to add node environment production after install
|
|
# due to this causing yarn to stop installing dev dependencies
|
|
# which are actually needed to get this environment up and running
|
|
ENV NODE_ENV=production
|
|
# This is required for isolated-vm to work on Node 20+
|
|
ENV NODE_OPTIONS="--no-node-snapshot"
|
|
ENV CLUSTER_MODE=${CLUSTER_MODE}
|
|
ENV TOP_LEVEL_PATH=/app
|
|
|
|
CMD ["./docker_run.sh"]
|