-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
51 lines (37 loc) · 1.46 KB
/
Dockerfile
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
51
# syntax = docker/dockerfile:1
# Adjust NODE_VERSION as desired
ARG NODE_VERSION=20.12.2
FROM node:${NODE_VERSION}-slim AS base
LABEL fly_launch_runtime="nodejs"
# Node.js app lives here
WORKDIR /app
# Set production environment
ENV NODE_ENV=production
ENV SENTRY_ENVIRONMENT=production
#######################################################################
# Throw-away build stage to reduce size of final image
FROM base AS build
# Install packages needed to build node modules
RUN apt-get update -qq && \
apt-get install -y build-essential pkg-config python-is-python3
# Install node modules
# NPM will not install any package listed in "devDependencies" when NODE_ENV is set to "production",
# to install all modules: "npm install --production=false".
# Ref: https://docs.npmjs.com/cli/v9/commands/npm-install#description
COPY --link package-lock.json package.json ./
# We cannot use a wildcard until `COPY --parents` is stabilised
# See https://docs.docker.com/reference/dockerfile/#copy---parents
COPY --link api/package.json ./api/
COPY --link publish/package.json ./publish/
RUN npm ci --workspaces
# Copy application code
COPY --link . .
#######################################################################
# Final stage for app image
FROM base
# Copy built application
COPY --from=build /app /app
# Set to `publish` or `api`
# This argument controls the value used by npm to choose which workspace (subdir) to start
ENV NPM_CONFIG_WORKSPACE=""
CMD [ "npm", "start" ]