simple-dockerfile
All checks were successful
Deploy on push / deploy (push) Successful in 1m41s

This commit is contained in:
2025-02-10 19:10:13 +03:00
parent 9671ef2508
commit 25b61c6b29
3 changed files with 20 additions and 1 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:slim
RUN apt-get update && apt-get install -y \
postgresql-client \
curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "server.py"]