dashy/Dockerfile

69 lines
1.7 KiB
Docker
Raw Normal View History

2022-02-05 05:39:14 +00:00
FROM node:16.13.2-alpine AS BUILD_IMAGE
2022-02-13 23:30:34 +00:00
# Set the platform to build image for
ARG TARGETPLATFORM
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
2022-02-13 23:30:34 +00:00
# Install additional tools needed if on arm64 / armv7
RUN \
case "${TARGETPLATFORM}" in \
2022-02-05 05:39:14 +00:00
'linux/arm64') apk add --no-cache python3 make g++ ;; \
'linux/arm/v7') apk add --no-cache python3 make g++ ;; \
esac
# Create and set the working directory
WORKDIR /app
# Install app dependencies
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile --network-timeout 1000000
# Copy over all project files and folders to the working directory
COPY . ./
# Build initial app for production
RUN yarn build
2022-02-13 23:30:34 +00:00
# Production stage
FROM node:16.13.2-alpine
2021-08-14 23:03:06 +00:00
# Define some ENV Vars
ENV PORT=80 \
DIRECTORY=/app \
2022-02-17 14:52:07 +00:00
IS_DOCKER=true \
2022-02-18 07:01:36 +00:00
USER=docker \
UID=12345 \
GID=23456
2021-08-14 23:03:06 +00:00
2022-02-18 07:01:36 +00:00
# Install tini for initialization and tzdata for setting timezone
RUN apk add --no-cache tzdata tini \
# Add group
&& addgroup --gid ${GID} "${USER}" \
# Add user
&& adduser \
--disabled-password \
--ingroup "${USER}" \
--gecos "" \
--home "${DIRECTORY}" \
--no-create-home \
--uid "$UID" \
"$USER"
USER ${USER}
2022-02-17 14:52:07 +00:00
2021-08-14 23:03:06 +00:00
# Create and set the working directory
WORKDIR ${DIRECTORY}
# Copy built application from build phase
2022-02-18 07:01:36 +00:00
COPY --from=BUILD_IMAGE --chown=${USER}:${USER} /app ./
# Finally, run start command to serve up the built application
ENTRYPOINT [ "/sbin/tini", "--" ]
CMD [ "yarn", "build-and-start" ]
2022-02-13 23:30:34 +00:00
# Expose the port
2021-08-14 23:03:06 +00:00
EXPOSE ${PORT}
2021-08-14 23:23:29 +00:00
2022-02-13 23:30:34 +00:00
# Run simple healthchecks every 5 mins, to check that everythings still great
2021-08-14 23:23:29 +00:00
HEALTHCHECK --interval=5m --timeout=2s --start-period=30s CMD yarn health-check