2024-09-07 19:22:06 +00:00
|
|
|
FROM python:3.10-alpine
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 9999
|
|
|
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
COPY src /app
|
2024-09-07 20:12:35 +00:00
|
|
|
COPY config/config.yaml /app
|
2024-09-07 19:22:06 +00:00
|
|
|
|
|
|
|
CMD ["python", "main.py"]
|