Skip to content

Instantly share code, notes, and snippets.

View DeltaWhy's full-sized avatar

Michael Limiero DeltaWhy

View GitHub Profile
@DeltaWhy
DeltaWhy / Dockerfile
Last active September 24, 2021 22:37
Poetry bug repro
FROM python:3.9
RUN pip list
RUN pip install poetry 'setuptools<58'
COPY . /app
WORKDIR /app
RUN poetry install -vvv || poetry run pip list && false