Skip to content

Commit

Permalink
docker linter, part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernauer committed Nov 13, 2024
1 parent cd47650 commit 9a35deb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:bookworm as builder

RUN apt-get update && \
apt-get install -y curl gcc python3 libpython3-dev && \
apt-get install --no-install-recommends -y curl gcc python3 libpython3-dev && \
rm -rf /var/lib/apt/lists/*

WORKDIR /
Expand All @@ -22,7 +22,7 @@ FROM debian:bookworm-slim

# Install python, needed for PythonScriptRouter
RUN apt-get update && \
apt-get install -y python3 python3-pip && \
apt-get install --no-install-recommends -y python3 python3-pip && \
rm -rf /var/lib/apt/lists/*

# There are propably some users that want to use this libs in their PythonScriptRouter to e.g. make external HTTP calls
Expand Down

0 comments on commit 9a35deb

Please sign in to comment.