Files
fission-src/environments/python/Dockerfile
T

16 lines
286 B
Docker

FROM alpine
WORKDIR /app
RUN apk add --no-cache python3 python3-dev build-base libev-dev libffi-dev && \
pip3 install --upgrade pip && \
rm -r /root/.cache
COPY requirements.txt /app
RUN pip3 install -r requirements.txt
COPY . /app
ENTRYPOINT ["python3"]
CMD ["server.py"]