Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ RUN pip install -r requirements.txt
RUN pip install -r dev-requirements.txt

# Copy in the application files and install it locally
COPY . /fidesops
WORKDIR /fidesops
COPY . /fidesops_install
WORKDIR /fidesops_install
RUN pip install -e .

WORKDIR /fidesops

CMD [ "fidesops", "webserver" ]