1
0
mirror of https://github.com/Luzifer/tex-api.git synced 2024-09-19 09:32:56 +00:00
tex-api/Dockerfile
Knut Ahlers ee53080ceb
Update dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2021-07-26 13:46:50 +02:00

36 lines
750 B
Docker

FROM golang:alpine as builder
COPY . /go/src/github.com/Luzifer/tex-api
WORKDIR /go/src/github.com/Luzifer/tex-api
RUN set -ex \
&& apk add --no-cache \
git \
&& go install \
-ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
-mod=readonly
FROM alpine:latest
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
ENV SCRIPT=/usr/local/bin/tex-build.sh
RUN set -ex \
&& apk --no-cache add \
bash \
ca-certificates \
texlive-xetex \
texmf-dist-most
COPY --from=builder /go/bin/tex-api /usr/local/bin/
COPY tex-build.sh /usr/local/bin/
EXPOSE 3000
VOLUME ["/storage"]
ENTRYPOINT ["/usr/local/bin/tex-api"]
CMD ["--"]
# vim: set ft=Dockerfile: