FROM golang:1.24.5-alpine@sha256:daae04ebad0c21149979cd8e9db38f565ecefd8547cf4a591240dc1972cf1399 AS builder ENV CGO_ENABLED=0 \ GOPATH=/go \ NODE_ENV=production COPY . /go/src/github.com/Luzifer/ots WORKDIR /go/src/github.com/Luzifer/ots RUN set -ex \ && apk --no-cache add \ curl \ git \ make \ nodejs-current \ npm \ tar \ unzip \ && make frontend_prod generate-apidocs \ && go install \ -ldflags "-X main.version=$(git describe --tags --always || echo dev)" \ -mod=readonly FROM alpine:3.22@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1 LABEL org.opencontainers.image.authors='Knut Ahlers ' \ org.opencontainers.image.version='1.17.2' \ org.opencontainers.image.url='https://github.com/Luzifer/ots/pkgs/container/ots' \ org.opencontainers.image.documentation='https://github.com/Luzifer/ots/wiki' \ org.opencontainers.image.source='https://github.com/Luzifer/ots' \ org.opencontainers.image.licenses='Apache-2.0' RUN set -ex \ && apk --no-cache add \ ca-certificates COPY --from=builder /go/bin/ots /usr/local/bin/ots EXPOSE 3000 USER 1000:1000 ENTRYPOINT ["/usr/local/bin/ots"] CMD ["--"] # vim: set ft=Dockerfile: