Skip to content

Instantly share code, notes, and snippets.

@gh640
Last active May 5, 2021 06:29
Show Gist options
  • Select an option

  • Save gh640/01e03016f8d684c09ebb0495fe1d0678 to your computer and use it in GitHub Desktop.

Select an option

Save gh640/01e03016f8d684c09ebb0495fe1d0678 to your computer and use it in GitHub Desktop.
Sample: Install Poetry in Dockerfile
FROM python:3.9-slim
ARG POETRY_VERSION="1.1.6"
# Install `poetry`.
ADD https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py /tmp/get-poetry.py
RUN python /tmp/get-poetry.py --version "${POETRY_VERSION}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment