Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gitworkflows authored Aug 12, 2024
1 parent 9629e40 commit d477084
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG GOVERSION=1.21.5

RUN ARCH=$(dpkg --print-architecture) \
&& if [ "${ARCH}" != "arm64" ] && [ "${ARCH}" != "amd64" ] && [ "${ARCH}" != "armhf" ]; then \
echo "reNgine not supported, encountered unknown architecture: ${TARGETPLATFORM}" \
echo "reNgine not supported, encountered unknown architecture: ${ARCH}" \
&& exit 1; \
fi

Expand Down Expand Up @@ -122,8 +122,8 @@ RUN nuclei -update-templates

# Copy requirements
COPY ./requirements.txt /tmp/requirements.txt
RUN pip3 install --upgrade setuptools==72.1.0
RUN pip3 install -r /tmp/requirements.txt --no-cache-dir
RUN pip3 install --upgrade setuptools==72.1.0 && \
pip3 install -r /tmp/requirements.txt --no-cache-dir

# install eyewitness
RUN pip3 install --no-cache-dir fuzzywuzzy \
Expand Down

0 comments on commit d477084

Please sign in to comment.