15 lines
272 B
Docker
15 lines
272 B
Docker
|
FROM python:3.10
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./requirements.txt /app/requirements.txt
|
||
|
|
||
|
RUN pip install --upgrade pip
|
||
|
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
ENV TZ=Europe/Moscow
|
||
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||
|
|
||
|
COPY . .
|