go-watch-webp/Dockerfile

15 lines
376 B
Docker
Raw Normal View History

2019-05-16 01:33:33 +00:00
FROM golang:1.12-alpine as builder
WORKDIR /data
COPY . .
RUN apk add --no-cache make git ca-certificates && \
make
FROM alpine:latest
RUN apk add --no-cache ca-certificates
WORKDIR /data
COPY --from=builder /data/convert-webp /usr/bin
COPY config.default.yml config.yml
EXPOSE 10230
VOLUME ["/img-src", "/img-dist"]
CMD ["/usr/bin/convert-webp", "-f", "/data/config.yml"]