15 lines
254 B
Docker
15 lines
254 B
Docker
|
FROM python:3.10-alpine
|
||
|
|
||
|
LABEL maintainer="s.zhukovskii@ispsystem.com"
|
||
|
LABEL ru.isptech.git.SupportAccess.version=v0.0.1
|
||
|
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt ./
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
CMD [ "python", "./main.py" ]
|