-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile.standalone
58 lines (41 loc) · 1.31 KB
/
Dockerfile.standalone
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
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
RUN yarn install --production --ignore-scripts --prefer-offline
FROM alpine:3.14 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
# Copy important files in entrypoint.sh
ENV STANDALONE true
# 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
# Copy the compiled js file
COPY --from=builder /app/dist/index.js ./index.js
# Copy the script that launches the js file
COPY entrypoint.sh .
# Copy production node_modules
COPY --from=builder /app/node_modules ./node_modules
CMD [ "/app/entrypoint.sh" ]