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 7a274ce525
Update Alpine, lower image size
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-07-06 18:50:50 +02:00

34 lines
718 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)"
FROM alpine:3.10
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: