FROM python:3-alpine

COPY . /code/

RUN pip install -r /code/requirements.txt

WORKDIR /code/src/

CMD ["python","server.py"]