This repository has been archived on 2020-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
2dx_extract/Dockerfile
Simon Bruder b2519c0198
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
2020-03-14 18:01:22 +00:00

14 lines
298 B
Docker

FROM alpine as builder
RUN apk add --no-cache build-base git
RUN git clone --depth=1 https://github.com/iDestyKK/2dx_extract \
&& cd 2dx_extract \
&& make CFLAGS=-static
FROM alpine
COPY --from=builder /2dx_extract/2dx_extract /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/2dx_extract"]