File size: 206 Bytes
c23a4a2
6cc6d47
 
 
 
 
 
 
3302d84
6cc6d47
cd568fe
6cc6d47
cd568fe
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10

WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

COPY . /app

EXPOSE 23456


CMD ["python", "/app/app.py"]