12 lines
174 B
Docker
12 lines
174 B
Docker
|
FROM python:3.11
|
||
|
WORKDIR /code
|
||
|
|
||
|
ENTRYPOINT ["python3", "server.py"]
|
||
|
|
||
|
RUN pip3 install --upgrade pip
|
||
|
|
||
|
COPY requirements.txt .
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
COPY src .
|