2024-03-04 16:00:17 +03:00
|
|
|
FROM node:18.19.1-alpine AS BUILD_IMAGE
|
2022-01-29 03:31:41 +03:00
|
|
|
|
2022-02-14 02:30:34 +03:00
|
|
|
# Set the platform to build image for
|
2022-01-29 03:31:41 +03:00
|
|
|
ARG TARGETPLATFORM
|
|
|
|
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
|
|
|
|
|
2022-02-14 02:30:34 +03:00
|
|
|
# Install additional tools needed if on arm64 / armv7
|
2022-01-29 03:31:41 +03:00
|
|
|
RUN \
|
|
|
|
case "${TARGETPLATFORM}" in \
|
2022-02-05 08:39:14 +03:00
|
|
|
'linux/arm64') apk add --no-cache python3 make g++ ;; \
|
|
|
|
'linux/arm/v7') apk add --no-cache python3 make g++ ;; \
|
2022-01-29 03:31:41 +03:00
|
|
|
esac
|
|
|
|
|
|
|
|
# Create and set the working directory
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Install app dependencies
|
2024-03-03 22:03:17 +03:00
|
|
|
COPY package.json yarn.lock ./
|
2024-03-04 00:07:56 +03:00
|
|
|
RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 300000 --network-concurrency 1
|
2022-01-29 03:31:41 +03:00
|
|
|
|
|
|
|
# Copy over all project files and folders to the working directory
|
|
|
|
COPY . ./
|
|
|
|
|
|
|
|
# Build initial app for production
|
2024-03-04 16:47:15 +03:00
|
|
|
RUN yarn build --mode production
|
2022-01-29 03:31:41 +03:00
|
|
|
|
2022-02-14 02:30:34 +03:00
|
|
|
# Production stage
|
2024-03-04 16:00:17 +03:00
|
|
|
FROM node:20.11.1-alpine3.19
|
2021-08-15 02:03:06 +03:00
|
|
|
|
|
|
|
# Define some ENV Vars
|
2024-04-13 14:32:17 +03:00
|
|
|
ENV PORT=8080 \
|
2021-08-15 13:24:04 +03:00
|
|
|
DIRECTORY=/app \
|
2022-02-20 14:56:26 +03:00
|
|
|
IS_DOCKER=true
|
2022-02-17 17:52:07 +03:00
|
|
|
|
2021-08-15 02:03:06 +03:00
|
|
|
# Create and set the working directory
|
|
|
|
WORKDIR ${DIRECTORY}
|
|
|
|
|
2022-09-07 18:25:11 +03:00
|
|
|
# Update tzdata for setting timezone
|
|
|
|
RUN apk add --no-cache tzdata
|
2022-02-20 14:56:26 +03:00
|
|
|
|
2022-01-29 03:31:41 +03:00
|
|
|
# Copy built application from build phase
|
2022-03-14 02:35:19 +03:00
|
|
|
COPY --from=BUILD_IMAGE /app ./
|
2021-06-04 21:57:43 +03:00
|
|
|
|
2022-01-29 03:31:41 +03:00
|
|
|
# Finally, run start command to serve up the built application
|
2024-02-27 23:14:19 +03:00
|
|
|
CMD [ "yarn", "build-and-start" ]
|
2021-06-10 21:46:46 +03:00
|
|
|
|
2022-02-14 02:30:34 +03:00
|
|
|
# Expose the port
|
2021-08-15 02:03:06 +03:00
|
|
|
EXPOSE ${PORT}
|
2021-08-15 02:23:29 +03:00
|
|
|
|
2022-02-14 02:30:34 +03:00
|
|
|
# Run simple healthchecks every 5 mins, to check that everythings still great
|
2023-01-21 19:33:11 +03:00
|
|
|
HEALTHCHECK --interval=5m --timeout=5s --start-period=30s CMD yarn health-check
|