FROM python:3.5-slim

EXPOSE 80

ENV LINK_API_PORT 80

COPY . /opt/app
WORKDIR /opt/app
RUN pip install -r requirements.txt

WORKDIR /opt/app/src
ENTRYPOINT python server.py
