-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dockerfile
29 lines (23 loc) · 941 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
# Builder
# https://steele.blue/tiny-github-actions/
FROM dyweb/go-dev:1.13.6 as builder
LABEL maintainer="[email protected]"
ARG PROJECT_ROOT=/go/src/github.com/dyweb/weekly
ENV WEEKLY_GEN_VERSION=v0.3.5
WORKDIR $PROJECT_ROOT
RUN curl -sSL https://github.com/dyweb/dy-weekly-generator/releases/download/$WEEKLY_GEN_VERSION/dy-weekly-generator-$WEEKLY_GEN_VERSION-x86_64-unknown-linux-gnu.tar.gz \
| tar -vxz -C /usr/bin
COPY . $PROJECT_ROOT
WORKDIR scripts/weekly
RUN go install .
# Runner
FROM ubuntu:18.04
LABEL maintainer="[email protected]"
# NOTE: libssl is required by weekly-gen
# NOTE: certificate is needed for calling github API https://github.com/google/go-github/issues/1049
RUN apt update && apt install -y ca-certificates libssl1.0.0 && update-ca-certificates 2>/dev/null || true
WORKDIR /usr/bin
COPY --from=builder /usr/bin/weekly-gen .
COPY --from=builder /go/bin/weekly .
ENTRYPOINT ["weekly"]
CMD ["gen"]