-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Dockerfile.minimal
43 lines (32 loc) · 1.04 KB
/
Dockerfile.minimal
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
FROM golang:1-alpine AS builder
ENV CGO_ENABLED=0 \
GOPATH=/go \
NODE_ENV=production
COPY . /go/src/github.com/Luzifer/ots
WORKDIR /go/src/github.com/Luzifer/ots
RUN set -ex \
&& apk --no-cache add \
curl \
git \
make \
nodejs-lts \
npm \
tar \
unzip \
&& make download_libs generate-inner generate-apidocs \
&& go install \
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
-mod=readonly
FROM scratch
LABEL org.opencontainers.image.authors='Knut Ahlers <[email protected]>' \
org.opencontainers.image.version='1.13.0' \
org.opencontainers.image.url='https://github.com/Luzifer/ots/pkgs/container/ots' \
org.opencontainers.image.documentation='https://github.com/Luzifer/ots/wiki' \
org.opencontainers.image.source='https://github.com/Luzifer/ots' \
org.opencontainers.image.licenses='Apache-2.0'
COPY --from=builder /go/bin/ots /usr/local/bin/ots
EXPOSE 3000
USER 1000:1000
ENTRYPOINT ["/usr/local/bin/ots"]
CMD ["--"]
# vim: set ft=Dockerfile: