skip to Main Content

Using Docker with Python Poetry?

I've been using Docker with pipenv for my data science deployment setup and now I want to change to Poetry. My Dockerfile is: FROM python:3.8-alpine3.13 ENV POETRY_VIRTUALENVS_CREATE=false POETRY_VERSION=1.1.11 RUN apk add --no-cache python3-dev gcc libc-dev musl-dev openblas gfortran build-base postgresql-libs…

VIEW QUESTION
Back To Top
Search