You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 months ago | |
---|---|---|
.dockerignore | 2 months ago | |
Dockerfile | 2 months ago | |
Makefile | 2 months ago | |
README.md | 2 months ago |
README.md
Custom Dockerfile for the awesome GBox Proxy
docker pull git.dergrimm.net/dergrimm/gbox:v1.0.6
https://git.dergrimm.net/dergrimm/-/packages/container/gbox
FROM docker.io/alpine/git:2.36.3 as puller
WORKDIR /usr/src/gbox
ARG GBOX_VERSION
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
COPY --from=puller /usr/src/gbox .
RUN go build ./cmd/main.go
FROM docker.io/caddy:2.6.4-alpine
LABEL maintainer="Dominic Grimm <dominic@dergrimm.net>" \
org.opencontainers.image.description="Custom build of the GBox Proxy" \
org.opencontainers.image.licenses="Apache License 2.0" \
org.opencontainers.image.source="https://git.dergrimm.net/dergrimm/gbox" \
org.opencontainers.image.url="https://git.dergrimm.net/dergrimm/gbox"
COPY --from=builder /usr/src/gbox/Caddyfile.dist /etc/caddy/Caddyfile
COPY --from=builder /usr/src/gbox/main /usr/bin/caddy