This repository has been archived on 2026-03-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-12-17 01:52:19 +00:00

12 lines
199 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY populater/requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY populater/src .
ADD common ./common
CMD [ "python", "-u", "app.py" ]