Last active
December 20, 2023 08:10
-
-
Save lucaspar/2007d0308cd09d5b2fd995c22a731349 to your computer and use it in GitHub Desktop.
Minimal installation of Poetry in Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use python3 alpine image | |
FROM python:3.12-alpine | |
# install curl | |
RUN apk add --no-cache curl | |
# install poetry | |
RUN curl -sSL https://install.python-poetry.org | python3 - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment