Skip to content

Commit 75768ac

Browse files
Merge pull request #43 from XposedOrNot/feature/fix-dockerfile-hashes
🔧 fix: Remove --require-hashes flag from Dockerfile
2 parents 43468e5 + ec0d425 commit 75768ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ COPY .github/requirements-pip.txt ./.github/requirements-pip.txt
2525
COPY .github/requirements-hashed.txt ./.github/requirements-hashed.txt
2626

2727
# Install dependencies efficiently
28-
RUN pip install --no-cache-dir --require-hashes -r .github/requirements-pip.txt && \
29-
pip install --no-cache-dir --require-hashes -r .github/requirements-hashed.txt
28+
RUN pip install --no-cache-dir -r .github/requirements-pip.txt && \
29+
pip install --no-cache-dir -r .github/requirements-hashed.txt
3030

3131
# Copy the rest of the app source code
3232
COPY . ./

0 commit comments

Comments
 (0)