Files
fission-src/environments/python/builder/Dockerfile
T
2020-06-05 16:03:46 +05:30

12 lines
258 B
Docker

ARG BUILDER_IMAGE=fission/builder:latest
FROM ${BUILDER_IMAGE}
RUN apk update
RUN apk add --no-cache python3 python3-dev build-base gcc bash py-pip
RUN pip3 install --upgrade pip
RUN rm -r /root/.cache
ADD defaultBuildCmd /usr/local/bin/build
EXPOSE 8001