11 lines
191 B
Docker
11 lines
191 B
Docker
FROM python:3.9
|
|
|
|
ENV TZ="Asia/Tokyo"
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY dataimport ./
|
|
|
|
CMD [ "python", "./controller.py" ]
|