-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
50 lines (37 loc) · 1.66 KB
/
Dockerfile
File metadata and controls
50 lines (37 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# syntax=docker/dockerfile:1
# Comments are provided throughout this file to help you get started.
# If you need more help, visit the Dockerfile reference guide at
# https://docs.docker.com/engine/reference/builder/
ARG NODE_VERSION=22
################################################################################
# Use node image for base image for all stages.
FROM node:${NODE_VERSION}-alpine
# Set working directory for all build stages.
WORKDIR /usr/src/app
RUN apk add --no-cache openssl
# Use production node environment by default.
ENV NODE_ENV=production
# Download dependencies as a separate step to take advantage of Docker's caching.
# Leverage a cache mount to /root/.yarn to speed up subsequent builds.
# Leverage bind mounts to package.json and yarn.lock to avoid having to copy them
# into this layer.
RUN --mount=type=bind,source=package.json,target=package.json \
--mount=type=bind,source=yarn.lock,target=yarn.lock \
--mount=type=cache,target=/root/.yarn \
yarn install --production --frozen-lockfile
# Download additional development dependencies before building, as some projects require
# "devDependencies" to be installed to build. If you don't need this, remove this step.
# RUN --mount=type=bind,source=package.json,target=package.json \
# --mount=type=bind,source=yarn.lock,target=yarn.lock \
# --mount=type=cache,target=/root/.yarn \
# yarn install --frozen-lockfile
# Copy the rest of the source files into the image.
COPY . .
# Run the build script.
RUN yarn run build
# Run the application as a non-root user.
USER node
# Expose the port that the application listens on.
EXPOSE 3000
# Run the application.
CMD ["yarn", "start"]