summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorappleboy <appleboy.tw@gmail.com>2023-04-29 06:07:15 +0200
committerJason Song <i@wolfogre.com>2023-04-29 06:07:15 +0200
commit0d727eb2621c706d973987490bb3b14163693cf3 (patch)
treef610f62b36c1c80c3f0b17d9b7ca45554ae5db5e /Dockerfile
parentDocument persisting `/data` for docker container (#160) (diff)
downloadforgejo-runner-0d727eb2621c706d973987490bb3b14163693cf3.tar.xz
forgejo-runner-0d727eb2621c706d973987490bb3b14163693cf3.zip
build: optimize Dockerfile and update dependencies (#162)
- Update base images to golang:1.20-alpine3.17 and alpine:3.17 - Replace `--update-cache` with `--no-cache` in apk add command - Specify exact versions for make, git, and bash packages Signed-off-by: appleboy <appleboy.tw@gmail.com> Reviewed-on: https://gitea.com/gitea/act_runner/pulls/162 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: appleboy <appleboy.tw@gmail.com> Co-committed-by: appleboy <appleboy.tw@gmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index 37c9354..e530655 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,15 +1,15 @@
-FROM golang:alpine as builder
-RUN apk add --update-cache make git
+FROM golang:1.20-alpine3.17 as builder
+RUN apk add --no-cache make=4.3-r1 git=2.38.5-r0
COPY . /opt/src/act_runner
WORKDIR /opt/src/act_runner
RUN make clean && make build
-FROM alpine as runner
-RUN apk add --update-cache \
- git bash \
- && rm -rf /var/cache/apk/*
+FROM alpine:3.17
+RUN apk add --no-cache \
+ git=2.38.5-r0 bash=5.2.15-r0 \
+ && rm -rf /var/cache/apk/*
COPY --from=builder /opt/src/act_runner/act_runner /usr/local/bin/act_runner
COPY run.sh /opt/act/run.sh