Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update several versions #17

Merged
merged 4 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
FROM ubuntu:18.04
FROM ubuntu:20.04

# Maintainer of the docker image, not the code!
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
15 changes: 8 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Click==7.0
Flask==1.0.2
itsdangerous==1.1.0
Jinja2==2.10.1
Click==8.1.3
Flask==2.3.3
itsdangerous==2.1.2
Jinja2==3.1.4
lxml==4.9.1
MarkupSafe==1.1.1
MarkupSafe==2.1.1
natsort==6.0.0
pygraphviz==1.5
pyparsing==2.4.0
urllib3==1.26.5
Werkzeug==0.16.0
pytest==7.4.2
urllib3==1.26.19
Werkzeug==3.0.3