Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinguy committed Jul 10, 2024
1 parent 053db30 commit 10ffbec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker/docker/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN mkdir -p /srv && \
cd /srv/betterscan && \
pip install --upgrade pip && \
pip install pipenv && \
pipenv install --system && \
pipenv install --system --deploy
ln -s /srv/betterscan/quantifiedcode/settings/default.yml /srv/betterscan/settings.yml && \
git clone -b checkmate3 https://github.com/tcosolutions/checkmate-ce /checkmate && \
cd /checkmate && \
Expand Down
6 changes: 3 additions & 3 deletions docker/docker/worker-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ RUN go version
RUN gem install brakeman && \
npm install -g jshint

# Install Python packages
RUN pip install --upgrade pip && \
# Install pip, pipenv and the dependencies
RUN pip install --upgrade pip && \
pip install pipenv && \
pipenv install --system &&
pipenv install --system --deploy


# Clone the checkmate repository
Expand Down
6 changes: 3 additions & 3 deletions docker/docker/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ RUN go version
RUN gem install brakeman && \
npm install -g jshint

# Install Python packages
RUN pip install --upgrade pip && \
# Install pip, pipenv and the dependencies
RUN pip install --upgrade pip && \
pip install pipenv && \
pipenv install --system &&
pipenv install --system --deploy


# Clone the checkmate repository
Expand Down

0 comments on commit 10ffbec

Please sign in to comment.