oxipng/Dockerfile
2022-11-12 19:47:44 +01:00

18 lines
293 B
Docker

FROM rust:alpine as base
COPY . /src
RUN rustup update 1.64 && rustup default 1.64
RUN apk update \
&& apk add \
gcc
RUN cd /src && cargo build --release
FROM alpine as tool
COPY --from=base /src/target/release/oxipng /usr/local/bin
ENTRYPOINT [ "oxipng" ]
CMD [ "--help" ]