This commit is contained in:
Dominic Grimm 2023-04-11 14:51:19 +02:00
parent 21b86ff24b
commit 2388d33beb
No known key found for this signature in database
GPG key ID: 12EFFCAEA9E620BF
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
FROM docker.io/alpine/git:2.36.3 as puller
WORKDIR /usr/src/gbox
ARG GBOX_VERSION
RUN git clone --depth 1 --branch v${GBOX_VERSION} https://github.com/gbox-proxy/gbox.git .
RUN git clone --depth 1 --branch ${GBOX_VERSION} https://github.com/gbox-proxy/gbox.git .
FROM docker.io/golang:1.17.13-alpine3.16 as builder
WORKDIR /usr/src/gbox