Files
habr-article-API/dockerfile
n0body 873c061152 Set up a docker image
- Added .dockerignore, dockerfile and compose.yml + .gitea directory
2025-09-06 01:18:56 +03:00

12 lines
221 B
Plaintext

FROM python:3.13-slim
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y --no-install-recommends libpq-dev build-essential
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "src/main.py"]