You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/paddle/scripts/musl_build/Dockerfile

16 lines
291 B

FROM python:3.7-alpine3.10
WORKDIR /root
RUN apk update
RUN apk add --no-cache \
g++ gfortran make cmake patchelf git \
linux-headers \
freetype-dev libjpeg-turbo-dev zlib-dev
RUN apk add --no-cache --force-overwrite \
lapack-dev openblas-dev
ENTRYPOINT [ "/bin/sh" ]