mirror of
https://github.com/aunefyren/wrapperr
synced 2024-11-10 13:44:12 +00:00
17 lines
312 B
Docker
17 lines
312 B
Docker
FROM golang:1.19.0-bullseye
|
|
|
|
ARG TARGETARCH
|
|
ARG TARGETOS
|
|
ENV port=8282
|
|
|
|
LABEL org.opencontainers.image.source=https://github.com/aunefyren/wrapperr
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN GO111MODULE=on CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build
|
|
|
|
EXPOSE ${port}
|
|
|
|
ENTRYPOINT /app/wrapperr -port=${port}
|