govorov/backend/Dockerfile

15 lines
227 B
Docker
Raw Normal View History

2025-04-30 17:05:44 +02:00
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p /app/data \
&& chmod +x /app/entrypoint.sh
EXPOSE 8143
ENTRYPOINT ["./entrypoint.sh"]