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 a88060fb25
All checks were successful
continuous-integration/drone/tag Build is passing
fix build
2021-06-27 16:21:20 +02:00

15 lines
207 B
Docker

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