Skip to content

Commit

Permalink
Dockerfile: Update ordering of apt packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhinder authored Sep 17, 2024
1 parent 3362603 commit 993d8a1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@ MAINTAINER "Ian Hinder <[email protected]>"
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update -y && \
apt-get install -y python3 python3-pip python3-requests graphviz libgraphviz-dev curl && \
apt-get install -y \
python3 \
python3-pip \
python3-requests \
pkg-config \
graphviz \
libgraphviz-dev \
curl && \
rm -rf /var/lib/apt/lists/*
# Note: the ordering of these packages matters as libgraphviz-dev requires python3-pip

COPY ./requirements.txt /app/requirements.txt

Expand Down

0 comments on commit 993d8a1

Please sign in to comment.