Skip to content

Commit

Permalink
Force dependencies to be the latest version (#74)
Browse files Browse the repository at this point in the history
Force dependencies to be the latest version
  • Loading branch information
cccs-jh authored Apr 23, 2024
1 parent 0a0c2cf commit 71efacd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV SERVICE_PATH deobs.DeobfuScripter

# Install python dependencies
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir --user --requirement requirements.txt && rm -rf ~/.cache/pip
RUN pip install --no-cache-dir --upgrade --user --requirement requirements.txt && rm -rf ~/.cache/pip

# Copy Crowbar service code
WORKDIR /opt/al_service
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ lxml
regex
# assemblyline-service-utilities also depends on multidecoder and pins the version number.
# Make sure the version ranges are compatible when upgrading.
multidecoder>=1.3.1,<2.0
assemblyline-service-utilities>=4.5,<4.6
multidecoder>=1.2,<2.0

0 comments on commit 71efacd

Please sign in to comment.