-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
59 lines (41 loc) · 1.63 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
# alpine version should match the version in .nvmrc as closely as possible
FROM node:14.18.2-alpine3.12@sha256:60ebf5d469a72fe510cb197c4a251a92de87f01361d2d8589268b1c641a061ac as builder
ARG NPMRC
ARG VERSION
# Install git
RUN apk add --update git
# Install python make and g++. They are needed when building node-sass.
RUN apk add python2 make g++
ADD . /tmp
WORKDIR /tmp
RUN echo "$NPMRC" > .npmrc && yarn install && rm -f .npmrc
# Create version.txt
RUN echo "$VERSION" > src/version.txt
# Build the dist dir containing the static files
RUN ["npm", "run", "build", "--", "--prod", "--output-hashing=all"]
FROM node:14.18.2-alpine3.12@sha256:60ebf5d469a72fe510cb197c4a251a92de87f01361d2d8589268b1c641a061ac
# Install tooling
RUN apk add openssl curl ca-certificates
# Install nginx repo
RUN printf "%s%s%s\n" "http://nginx.org/packages/alpine/v" `egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release` "/main" | tee -a /etc/apk/repositories
# Install nginx key
RUN curl -o /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub
# Check key
RUN openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -text -noout
# Move key to storage
RUN mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/
# Install nginx
RUN apk add --update nginx && \
rm -rf /var/cache/apk/*
RUN mkdir -p /run/nginx
# Stream the nginx logs to stdout and stderr
RUN ln -sf /dev/stdout /var/log/nginx/access.log && \
ln -sf /dev/stderr /var/log/nginx/error.log
# Add nginx config
ADD nginx.conf /etc/nginx/nginx.conf
WORKDIR /app
# Copy possibly cached node_modules to app dir
COPY --from=builder /tmp/dist ./dist
# Start web server and expose http
EXPOSE 80
CMD ["nginx"]