Cristobal299/flask-sqlite-api
0
1FROM python:3.11-slim2 3# Prevent Python from writing pyc files and buffering stdout/stderr4ENV PYTHONUNBUFFERED=15 6# Install system dependencies (none required for this simple app)7# If you need build tools for other packages, uncomment the next line8# RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*9 10WORKDIR /app11COPY . /app12 13RUN pip install --no-cache-dir -r requirements.txt14 15EXPOSE 786016 17CMD ["python", "app.py"]