diff --git a/Dockerfile b/Dockerfile index cfb39750a..f0d84caca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,10 +18,8 @@ RUN pip install -r requirements.txt RUN pip install -r dev-requirements.txt # Copy in the application files and install it locally -COPY . /fidesops_install -WORKDIR /fidesops_install -RUN pip install -e . - +COPY . /fidesops WORKDIR /fidesops +RUN pip install -e . CMD [ "fidesops", "webserver" ] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index ef69f8e04..4093fda1c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,6 +22,7 @@ services: source: ./ target: /fidesops read_only: False + - /fidesops/src/fidesops.egg-info db: image: postgres:12