FROM python:latest

WORKDIR /server

COPY requirements.txt .

RUN pip3 install -r requirements.txt

CMD ["python3", "src/server.py"]