Skip to content

Commit ec0d425

Browse files
🔧 fix: Remove --require-hashes flag from Dockerfile
1 parent 43468e5 commit ec0d425

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)