compiler-discord/docker/python/Dockerfile

11 lines
206 B
Text
Raw Normal View History

2019-03-12 10:09:46 +01:00
FROM alpine
LABEL author="1Computer1"
RUN apk update
RUN apk add build-base python3 python3-dev
RUN python3 -m pip install -U pip
RUN python3 -m pip install -U numpy
COPY run.sh /var/run/
WORKDIR /var/ws