Skip to content

Commit 3d82804

Browse files
Merge pull request #4 from springload/fix/add-wget
Add wget to the static analysis container
2 parents 7f35931 + cf61502 commit 3d82804

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ FROM python:3.9-slim AS static-analysis
33
WORKDIR /project
44
COPY requirements/static_analysis.txt requirements/static_analysis.txt
55
RUN pip install -r requirements/static_analysis.txt
6+
RUN apt-get update && apt-get install -y \
7+
wget \
8+
&& rm -rf /var/lib/apt/lists/*
69
COPY . /project

0 commit comments

Comments
 (0)