Skip to content

Instantly share code, notes, and snippets.

View ednguyenn's full-sized avatar

Edward Nguyen ednguyenn

View GitHub Profile
@ednguyenn
ednguyenn / Dockerfile
Created June 25, 2024 07:59 — forked from soof-golan/Dockerfile
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