mirror of
https://github.com/xxh/xxh
synced 2024-11-14 16:27:09 +00:00
37 lines
1.1 KiB
Docker
37 lines
1.1 KiB
Docker
FROM alpine:3.13.3
|
|
VOLUME /result
|
|
|
|
ADD . /xxh
|
|
|
|
ENV PYTHON_VER 3.8.2
|
|
ENV PYTHON_LIB_VER 3.8
|
|
|
|
RUN apk update && apk add --update musl-dev gcc patchelf python3-dev py3-pip chrpath git vim mc wget make openssh-client
|
|
RUN pip3 install -U pip
|
|
RUN pip3 install -U "https://github.com/Nuitka/Nuitka/archive/factory.zip"
|
|
RUN pip3 install pexpect pyyaml
|
|
|
|
RUN mkdir /build /package
|
|
|
|
WORKDIR /build
|
|
|
|
RUN wget https://www.python.org/ftp/python/$PYTHON_VER/Python-$PYTHON_VER.tgz && tar -xzf Python-$PYTHON_VER.tgz
|
|
WORKDIR Python-$PYTHON_VER
|
|
RUN cp /xxh/portable-musl-alpine/Setup.local Modules/
|
|
RUN ./configure LDFLAGS="-static" --disable-shared
|
|
RUN make LDFLAGS="-static" LINKFORSHARED=" "
|
|
RUN cp libpython$PYTHON_LIB_VER.a /usr/lib
|
|
|
|
RUN echo 'Add xxh'
|
|
|
|
WORKDIR /xxh
|
|
ENV LDFLAGS "-static -l:libpython3.8.a"
|
|
RUN nuitka3 --python-flag=no_site --python-flag=no_warnings --show-progress --standalone --follow-imports xxh/xxh
|
|
RUN ls -la
|
|
|
|
WORKDIR xxh.dist
|
|
RUN ls -la
|
|
RUN ./xxh.bin -V
|
|
RUN cp xxh.bin /package/xxh && cp /xxh/xxh/xxh_xxh/xxh.*sh /xxh/xxh/xxh_xxh/*.xxhc /package
|
|
WORKDIR /package
|
|
CMD tar -zcf /result/xxh-portable-musl-alpine-`uname`-`uname -m`.tar.gz * && ls -sh1 /result
|