Skip to content

Instantly share code, notes, and snippets.

View VanderSVan's full-sized avatar

Vander Svanlin VanderSVan

View GitHub Profile
@Anexen
Anexen / Dockerfile
Last active August 29, 2023 07:45
production-ready dockerfile for python projects
# syntax = docker/dockerfile:experimental
ARG PYTHON_VERSION=3.7.6
ARG APP_ENV=prod
# ---------------------------------------------------------------
FROM python:${PYTHON_VERSION}-stretch AS base-builder
ENV VIRTUAL_ENV=/opt/venv
RUN python -m venv ${VIRTUAL_ENV}