generated from ministryofjustice/hmpps-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
70 lines (48 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Stage: base image
FROM node:22.11-slim AS base
ARG BUILD_NUMBER=1_0_0
ARG GIT_REF=not-available
LABEL maintainer="HMPPS Digital Studio <[email protected]>"
ENV TZ=Europe/London
RUN ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone
RUN addgroup --gid 2000 --system appgroup && \
adduser --uid 2000 --system appuser --gid 2000
WORKDIR /app
# Cache breaking
ENV BUILD_NUMBER ${BUILD_NUMBER:-1_0_0}
RUN apt-get update && \
apt-get upgrade -y && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
# Stage: build assets
FROM base as build
ARG BUILD_NUMBER=1_0_0
ARG GIT_REF=not-available
RUN apt-get update && \
apt-get install -y --no-install-recommends make python3 g++
COPY package*.json ./
RUN CYPRESS_INSTALL_BINARY=0 npm ci --no-audit
COPY . .
RUN npm run build
RUN export BUILD_NUMBER=${BUILD_NUMBER} && \
export GIT_REF=${GIT_REF} && \
npm run record-build-info
RUN npm prune --no-audit --production
# Stage: copy production assets and dependencies
FROM base
COPY --from=build --chown=appuser:appgroup \
/app/package.json \
/app/package-lock.json \
./
COPY --from=build --chown=appuser:appgroup \
/app/build-info.json ./dist/build-info.json
COPY --from=build --chown=appuser:appgroup \
/app/assets ./assets
COPY --from=build --chown=appuser:appgroup \
/app/dist ./dist
COPY --from=build --chown=appuser:appgroup \
/app/node_modules ./node_modules
EXPOSE 3000 3001
ENV NODE_ENV='production'
USER 2000
CMD [ "npm", "start" ]