37 lines
698 B
Docker
37 lines
698 B
Docker
FROM luzifer/archlinux as builder
|
|
|
|
ENV CGO_ENABLED=0 \
|
|
GOPATH=/go
|
|
|
|
COPY . /go/src/github.com/Luzifer/ots
|
|
WORKDIR /go/src/github.com/Luzifer/ots
|
|
|
|
RUN set -ex \
|
|
&& pacman --noconfirm -Syy \
|
|
curl \
|
|
git \
|
|
go \
|
|
make \
|
|
nodejs-lts-fermium \
|
|
npm \
|
|
tar \
|
|
unzip \
|
|
&& make -C src -f ../Makefile generate-inner \
|
|
&& make download_libs \
|
|
&& go install \
|
|
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
|
|
-mod=readonly
|
|
|
|
|
|
FROM scratch
|
|
|
|
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
|
|
|
COPY --from=builder /go/bin/ots /usr/local/bin/ots
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/usr/local/bin/ots"]
|
|
CMD ["--"]
|
|
|
|
# vim: set ft=Dockerfile:
|