-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
63 lines (45 loc) · 1.55 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
ARG NODE_IMAGE=node:16-alpine
FROM $NODE_IMAGE AS deps
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
FROM $NODE_IMAGE AS builder
WORKDIR /app
COPY tsconfig.json package.json yarn.lock rollup.config.ts ./
COPY src ./src
COPY --from=deps /app/node_modules ./node_modules
RUN yarn build
# Disabled production dependecies, see below
# RUN yarn install --production --ignore-scripts --prefer-offline
FROM nginx:stable-alpine AS runner
WORKDIR /app
ENV NODE_ENV production
ENV FORCE_COLOR 1
ENV DATA_PATH /app/data
ENV NGINX_PATH /etc/nginx
ENV NGINX_CONFIG_PATH ${NGINX_PATH}/conf.d
ENV NGINX_BASE_CONFIGS_PATH ${NGINX_CONFIG_PATH}/base
# Dependencies
# Bash
RUN apk add --no-cache bash && \
# Node
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/v3.16/main/ nodejs=16.17.1-r0 && \
# Certbot
apk add --no-cache certbot && \
# Directory for certificates
mkdir -p /var/www/letsencrypt
# Copy builtin configs
# These are later copied again by the entrypoint script
COPY src/nginx/builtin /app/nginx/builtin
# Delete Nginx's default config
RUN rm -f ${NGINX_CONFIG_PATH}/*
# Copy the compiled js file
COPY --from=builder /app/dist/index.js ./index.js
# Copy the script that launches nginx and the js file
COPY entrypoint.sh .
# Copy production node_modules
# Not needed anymore since there are no production modules
# COPY --from=builder /app/node_modules ./node_modules
HEALTHCHECK --interval=5s --timeout=5s --retries=3 \
CMD wget -nv -t1 --spider 'http://localhost/healthcheck' || exit 1
CMD [ "/app/entrypoint.sh" ]