Skip to content
Snippets Groups Projects
Dockerfile 257 B
Newer Older
Mark's avatar
Mark committed
FROM python:3.7

WORKDIR /usr/src/app

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

EXPOSE 5000

ENV FLASK_ENV production
ENV FLASK_RUN_HOST 0.0.0.0
ENV HYDRA_ADMIN_URL http://localhost:4445

CMD [ "flask", "run" ]