mirror of
https://github.com/kopia/kopia.git
synced 2026-05-18 19:54:37 -04:00
docker: push dockerhub tags * major.minor - tracks latest major.minor release (except major==0) * latest - tracks official stable releases * testing - tracks official stable releases or pre-releases (beta, rc) * unstable - tracks nightly/unstable builds
7 lines
190 B
Docker
7 lines
190 B
Docker
FROM alpine
|
|
ARG TARGETARCH
|
|
RUN apk add --no-cache --verbose ca-certificates && adduser -D kopia && addgroup kopia kopia
|
|
USER kopia:kopia
|
|
ENTRYPOINT ["/kopia"]
|
|
COPY bin-${TARGETARCH}/kopia /
|