From 2c55195b68e5611656dcf17dee0a23506cbc6011 Mon Sep 17 00:00:00 2001 From: kfrajer Date: Sun, 26 Jul 2020 19:57:57 -0400 Subject: [PATCH] [BUGFIX] Fix delivering static content This fixes delivering static content when accessing service. This confirms solution proposed and closes issue #15 --- web/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/Dockerfile b/web/Dockerfile index 2cd38f1..6d1d501 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -2,6 +2,8 @@ FROM python:3.7-slim RUN python -m pip install --upgrade pip +WORKDIR /usr/src/app + COPY requirements.txt requirements.txt RUN python -m pip install -r requirements.txt