Skip to content

Commit

Permalink
fix: pin versions so docker can build
Browse files Browse the repository at this point in the history
A lot of version pinning to ensure Docker builds are working again.
Fixes #1304.
  • Loading branch information
jonkerj committed Dec 12, 2022
1 parent 8075b37 commit 7437369
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Dockerfile.nipapd
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ RUN apt-get update -qy && apt-get upgrade -qy \
python-all \
python-docutils \
python-pip \
python3-pip \
python-dev \
&& pip --no-input install envtpl \
&& pip3 --no-input install envtpl \
&& rm -rf /var/lib/apt/lists/*


Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.www
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ RUN apt-get update -qy && apt-get upgrade -qy \
python-all \
python-docutils \
python-pip \
python3-pip \
python-dev \
&& pip --no-input install envtpl \
&& pip3 --no-input install envtpl \
&& rm -rf /var/lib/apt/lists/*

# Install pynipap, nipap and nipap-www
Expand Down
5 changes: 5 additions & 0 deletions nipap-www/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
decorator<4.0.0
beautifulsoup4<=4.9.3
PasteDeploy<3.0.0
mako<1.2
waitress<2.0.0
Pylons>=1.0
Jinja2
pynipap
Expand Down
2 changes: 1 addition & 1 deletion nipap/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flask==1.1.2
Flask==1.1.*
Flask-Compress==1.9.0
Flask-XML-RPC==0.1.2
Flask-RESTful==0.3.8
Expand Down

0 comments on commit 7437369

Please sign in to comment.