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

15 lines
207 B
Docker
Raw Normal View History

2021-06-27 16:21:20 +02:00
FROM python:3.8-alpine as base
2021-06-27 16:05:39 +02:00
ENV PYROOT /pyroot
ENV PYTHONUSERBASE $PYROOT
2021-06-27 16:21:20 +02:00
FROM base as builder
2021-06-27 16:05:39 +02:00
RUN apk add --no-cache \
gcc \
g++ \
musl-dev \
python3-dev && \
pip3 install pipenv