intial dockerization

This commit is contained in:
2022-12-17 01:52:19 +00:00
parent 0e2aef1941
commit abdcd45057
10 changed files with 84 additions and 7 deletions

11
populater/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
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" ]