This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.
ki-backend-docker/Dockerfile
Michael Weimann 8b4fcf8594
Some checks failed
continuous-integration/drone/tag Build is failing
update build
2021-06-27 16:15:02 +02:00

15 lines
231 B
Docker

FROM python:3.8-alpine as backend-base
ENV PYROOT /pyroot
ENV PYTHONUSERBASE $PYROOT
FROM backend-base as backend-builder
RUN apk add --no-cache \
gcc \
g++ \
musl-dev \
python3-dev && \
pip3 install pipenv