Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen authored Sep 26, 2023
1 parent dd2d3b4 commit 6c101b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ RUN set -x && \
KEPT_PACKAGES+=(python3-selenium) && \
# Install packages
apt-get update && \
apt-get install -y --no-install-recommends --break-system-packages \
apt-get install -y --no-install-recommends \
"${KEPT_PACKAGES[@]}" \
"${TEMP_PACKAGES[@]}" \
&& \
# Install pip packages
python3 -m pip install --no-cache-dir -r /opt/app/requirements.txt && \
python3 -m pip install --no-cache-dir --break-system-packages -r /opt/app/requirements.txt && \
# Clean-up
apt-get remove -y "${TEMP_PACKAGES[@]}" && \
apt-get autoremove -y && \
Expand Down

0 comments on commit 6c101b5

Please sign in to comment.