FROM python:3-alpine

COPY . /code/
WORKDIR /code/

RUN pip install -r /code/requirements.txt

CMD ["python","src/api.py"]