Skip to content

Instantly share code, notes, and snippets.

View Troublesis's full-sized avatar

Troublesis Troublesis

View GitHub Profile
@Troublesis
Troublesis / Dockerfile
Created October 13, 2024 14:00 — 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