This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
admina/Dockerfile
2023-03-29 01:27:43 +03:00

12 lines
148 B
Docker

FROM python
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY ./src .
RUN mkdir /app/data
CMD ["python", "main.py"]