-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
50 lines (36 loc) · 1.43 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
# syntax = docker/dockerfile:1
FROM node:22.13.0-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 db/package.json ./db/
COPY --link backend/package.json ./backend/
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 `api` or `observer`
# This argument controls the value used by npm to choose which workspace (subdir) to start
ENV NPM_CONFIG_WORKSPACE=""
CMD [ "npm", "start" ]