Michael Weimann
a88060fb25
All checks were successful
continuous-integration/drone/tag Build is passing
15 lines
207 B
Docker
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
|