This repository has been archived on 2020-03-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2dx_extract/Dockerfile

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"]