wrapperr/Dockerfile
2023-02-13 08:20:51 +01:00

20 lines
276 B
Docker

FROM golang:1.19-buster
LABEL org.opencontainers.image.source=https://github.com/aunefyren/wrapperr
ENV port=8282
RUN apt update
RUN apt add git
ENV GO111MODULE=on
WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 go build
EXPOSE ${port}
ENTRYPOINT /app/wrapperr -port=${port}