-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
75 lines (61 loc) · 2.11 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
71
72
73
74
############################################################################################################
# Stage: prepare a base image with all native utils pre-installed, used both by builder and definitive image
FROM node:20.18.1-alpine3.20 AS base
RUN apk add --no-cache curl
RUN npm i -g npm@10
######################################
# Stage: nodejs dependencies and build
FROM base AS builder
WORKDIR /webapp
COPY patches patches
ADD package.json .
ADD package-lock.json .
# use clean-modules on the same line as npm ci to be lighter in the cache
RUN npm ci && \
./node_modules/.bin/clean-modules --yes --exclude mocha/lib/test.js --exclude ramda/src/test.js --exclude "**/*.mustache"
# Adding UI files
ADD public public
ADD nuxt.config.js .
ADD config config
ADD contract contract
# Adding server files
ADD server server
ADD scripts scripts
ADD upgrade upgrade
# Build UI
ENV NODE_ENV production
RUN npm run build && rm -rf dist
# Cleanup /webapp/node_modules so it can be copied by next stage
RUN npm prune --production && rm -rf node_modules/.cache
##################################
# Stage: main nodejs service stage
FROM base
MAINTAINER "[email protected]"
RUN apk add --no-cache dumb-init
WORKDIR /webapp
# We could copy /webapp whole, but this is better for layering / efficient cache use
COPY --from=builder /webapp/node_modules /webapp/node_modules
COPY --from=builder /webapp/package.json /webapp/package.json
COPY --from=builder /webapp/nuxt-dist /webapp/nuxt-dist
ADD nuxt.config.js nuxt.config.js
ADD server server
ADD scripts scripts
ADD upgrade upgrade
ADD config config
ADD contract contract
ADD public/static public/static
# Adding licence, manifests, etc.
ADD README.md BUILD.json* ./
ADD LICENSE .
ADD nodemon.json .
# configure node webapp environment
ENV NODE_ENV production
ENV DEBUG db,upgrade*
# the following line would be a good practice
# unfortunately it is a problem to activate now that the service was already deployed
# with volumes belonging to root
#USER node
VOLUME /webapp/security
EXPOSE 8080
RUN chmod -R 777 ./nuxt-dist
CMD ["dumb-init", "node", "--max-http-header-size", "64000", "server"]