Skip to content

Instantly share code, notes, and snippets.

View ednguyenn's full-sized avatar

Edward Nguyen ednguyenn

View GitHub Profile
@soof-golan
soof-golan / Dockerfile
Last active August 15, 2025 17:31
Python + Poetry + Docker Example
FROM python:3.10 as python-base
# https://python-poetry.org/docs#ci-recommendations
ENV POETRY_VERSION=1.2.0
ENV POETRY_HOME=/opt/poetry
ENV POETRY_VENV=/opt/poetry-venv
# Tell Poetry where to place its cache and virtual environment
ENV POETRY_CACHE_DIR=/opt/.cache