-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
46 lines (32 loc) · 898 Bytes
/
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
FROM node:alpine as frontend
# node-sass may not provide a prebuilt (e.g. for arm)
RUN apk update
RUN apk add python make g++
RUN mkdir -p /app/client
WORKDIR /app/client
COPY client/package.json .
COPY client/tsconfig.json .
COPY client/yarn.lock .
RUN yarn
COPY client/ .
RUN yarn build
# Final artifact: /app/client/build
FROM golang:latest as builder
ENV CGO_ENABLED=0
WORKDIR /app
COPY . .
RUN go build -o bin/littleblue cmd/main.go
# Final artifact: /app/bin/littleblue
FROM alpine:latest
# Ensure runtime has valid certs
RUN apk update \
&& apk upgrade \
&& apk add --no-cache \
ca-certificates \
&& update-ca-certificates 2>/dev/null || true
RUN mkdir -p /opt/littleblue
WORKDIR /opt/littleblue
COPY --from=builder /app/bin/littleblue .
COPY --from=frontend /app/client/build ./client/build
COPY config.yml .
CMD ["/opt/littleblue/littleblue"]