2021-09-26 12:49:18 +00:00
|
|
|
FROM luzifer/archlinux as builder
|
|
|
|
|
|
|
|
ENV CGO_ENABLED=0 \
|
2023-09-30 17:59:09 +00:00
|
|
|
GOPATH=/go \
|
|
|
|
NODE_ENV=production
|
2017-08-03 18:09:18 +00:00
|
|
|
|
2020-01-24 15:17:09 +00:00
|
|
|
COPY . /go/src/github.com/Luzifer/ots
|
2017-08-03 18:09:18 +00:00
|
|
|
WORKDIR /go/src/github.com/Luzifer/ots
|
|
|
|
|
|
|
|
RUN set -ex \
|
2021-09-26 12:49:18 +00:00
|
|
|
&& pacman --noconfirm -Syy \
|
2021-09-08 15:43:24 +00:00
|
|
|
curl \
|
|
|
|
git \
|
2021-09-26 12:49:18 +00:00
|
|
|
go \
|
2021-09-08 15:43:24 +00:00
|
|
|
make \
|
2023-06-10 12:50:21 +00:00
|
|
|
nodejs-lts-hydrogen \
|
2021-09-26 12:49:18 +00:00
|
|
|
npm \
|
2021-09-08 15:43:24 +00:00
|
|
|
tar \
|
|
|
|
unzip \
|
2023-06-10 12:50:21 +00:00
|
|
|
&& make download_libs generate-inner generate-apidocs \
|
2020-01-24 15:17:09 +00:00
|
|
|
&& go install \
|
|
|
|
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
|
|
|
|
-mod=readonly
|
2018-05-05 16:15:43 +00:00
|
|
|
|
2021-09-26 12:49:18 +00:00
|
|
|
|
2018-05-05 16:15:43 +00:00
|
|
|
FROM alpine:latest
|
|
|
|
|
2023-12-15 17:10:14 +00:00
|
|
|
LABEL org.opencontainers.image.authors='Knut Ahlers <knut@ahlers.me>' \
|
2024-01-24 19:21:22 +00:00
|
|
|
org.opencontainers.image.version='1.12.0' \
|
2023-12-15 17:10:14 +00:00
|
|
|
org.opencontainers.image.url='https://hub.docker.com/r/luzifer/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'
|
2018-05-05 16:15:43 +00:00
|
|
|
|
|
|
|
RUN set -ex \
|
2020-01-24 15:17:09 +00:00
|
|
|
&& apk --no-cache add \
|
|
|
|
ca-certificates
|
2018-05-05 16:15:43 +00:00
|
|
|
|
|
|
|
COPY --from=builder /go/bin/ots /usr/local/bin/ots
|
2017-08-03 18:09:18 +00:00
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
|
2023-06-11 13:27:59 +00:00
|
|
|
USER 1000:1000
|
|
|
|
|
2018-05-05 16:15:43 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/ots"]
|
2017-08-03 18:09:18 +00:00
|
|
|
CMD ["--"]
|
2018-05-05 16:15:43 +00:00
|
|
|
|
|
|
|
# vim: set ft=Dockerfile:
|