12 lines
199 B
Docker
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" ]
|