2022-09-06 09:38:36 +00:00
|
|
|
ARG PNPM_VERSION=7.11.0
|
|
|
|
ARG NPM_VERSION=8.19.1
|
|
|
|
|
2022-09-02 18:44:29 +00:00
|
|
|
FROM node:18-slim as build
|
2022-02-10 14:47:44 +00:00
|
|
|
WORKDIR /app
|
2022-04-11 20:31:27 +00:00
|
|
|
|
2022-09-02 18:44:29 +00:00
|
|
|
RUN apt update && apt -y install curl
|
2022-09-06 08:14:34 +00:00
|
|
|
RUN npm --no-update-notifier --no-fund --global install pnpm@${PNPM_VERSION}
|
2022-04-11 20:31:27 +00:00
|
|
|
|
2022-07-06 09:02:36 +00:00
|
|
|
COPY . .
|
2022-04-11 20:31:27 +00:00
|
|
|
RUN pnpm install
|
2022-07-06 09:02:36 +00:00
|
|
|
RUN pnpm build
|
2022-02-10 14:47:44 +00:00
|
|
|
|
2022-07-06 09:02:36 +00:00
|
|
|
# Production build
|
2022-09-02 18:44:29 +00:00
|
|
|
FROM node:18-slim
|
2022-04-01 12:25:55 +00:00
|
|
|
WORKDIR /app
|
2022-07-06 09:02:36 +00:00
|
|
|
ENV NODE_ENV production
|
2022-09-06 12:20:14 +00:00
|
|
|
ARG TARGETPLATFORM
|
2022-04-01 12:25:55 +00:00
|
|
|
|
2022-09-06 08:14:34 +00:00
|
|
|
RUN apt update && apt -y install --no-install-recommends ca-certificates git git-lfs openssh-client curl jq cmake sqlite3 openssl psmisc python3
|
|
|
|
RUN apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/{apt,dpkg,cache,log}/
|
|
|
|
RUN npm --no-update-notifier --no-fund --global install pnpm@${PNPM_VERSION}
|
|
|
|
RUN npm install -g npm@${PNPM_VERSION}
|
2022-07-06 09:02:36 +00:00
|
|
|
|
2022-02-10 14:47:44 +00:00
|
|
|
RUN mkdir -p ~/.docker/cli-plugins/
|
2022-07-26 12:59:06 +00:00
|
|
|
# https://download.docker.com/linux/static/stable/
|
2022-04-01 12:25:55 +00:00
|
|
|
RUN curl -SL https://cdn.coollabs.io/bin/$TARGETPLATFORM/docker-20.10.9 -o /usr/bin/docker
|
2022-07-26 12:59:06 +00:00
|
|
|
# https://github.com/docker/compose/releases
|
2022-08-17 11:30:53 +00:00
|
|
|
# Reverted to 2.6.1 because of this https://github.com/docker/compose/issues/9704. 2.9.0 still has a bug.
|
|
|
|
RUN curl -SL https://cdn.coollabs.io/bin/$TARGETPLATFORM/docker-compose-linux-2.6.1 -o ~/.docker/cli-plugins/docker-compose
|
2022-03-31 22:08:29 +00:00
|
|
|
RUN chmod +x ~/.docker/cli-plugins/docker-compose /usr/bin/docker
|
2022-02-10 14:47:44 +00:00
|
|
|
|
2022-08-11 13:04:34 +00:00
|
|
|
RUN (curl -sSL "https://github.com/buildpacks/pack/releases/download/v0.27.0/pack-v0.27.0-linux.tgz" | tar -C /usr/local/bin/ --no-same-owner -xzv pack)
|
|
|
|
|
2022-07-06 09:02:36 +00:00
|
|
|
COPY --from=build /app/apps/api/build/ .
|
2022-09-15 07:34:39 +00:00
|
|
|
COPY --from=build /app/others/fluentbit/ ./fluentbit
|
2022-07-06 09:02:36 +00:00
|
|
|
COPY --from=build /app/apps/ui/build/ ./public
|
|
|
|
COPY --from=build /app/apps/api/prisma/ ./prisma
|
|
|
|
COPY --from=build /app/apps/api/package.json .
|
|
|
|
COPY --from=build /app/docker-compose.yaml .
|
2022-04-11 20:31:27 +00:00
|
|
|
|
2022-07-06 09:02:36 +00:00
|
|
|
RUN pnpm install -p
|
2022-04-11 20:31:27 +00:00
|
|
|
|
2022-02-10 14:47:44 +00:00
|
|
|
EXPOSE 3000
|
2022-08-29 13:42:18 +00:00
|
|
|
ENV CHECKPOINT_DISABLE=1
|
2022-07-06 09:02:36 +00:00
|
|
|
CMD pnpm start
|