Skip to content

Instantly share code, notes, and snippets.

View AlldDev's full-sized avatar

Alessandro César Rosão AlldDev

View GitHub Profile
@AlldDev
AlldDev / dockerfile-examples.md
Last active May 8, 2025 11:53
Dockerfile Examples

🐍 Flask (Python)

# Dockerfile - Flask
FROM python:3.11-slim

WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt