delete converted file
This commit is contained in:
parent
1275619fa0
commit
0661527a9c
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
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"]
|
Loading…
Reference in New Issue
Block a user