9 lines
132 B
Docker
9 lines
132 B
Docker
FROM python:latest
|
|
|
|
WORKDIR /server
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
CMD ["python3", "src/server.py"] |