mirror of
https://github.com/Luzifer/ots.git
synced 2025-07-24 15:05:20 -04:00
47 lines
1.2 KiB
Docker
47 lines
1.2 KiB
Docker
FROM golang:1.24.2-alpine@sha256:7772cb5322baa875edd74705556d08f0eeca7b9c4b5367754ce3f2f00041ccee 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.21@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
|
|
|
|
LABEL org.opencontainers.image.authors='Knut Ahlers <knut@ahlers.me>' \
|
|
org.opencontainers.image.version='1.16.0' \
|
|
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:
|