Skip to content

Commit 9999a8e

Browse files
authored
Merge version 3.5.5-1 (#320)
2 parents c9b6190 + 2117c50 commit 9999a8e

File tree

4 files changed

+80
-13
lines changed

4 files changed

+80
-13
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9-slim-buster
1+
FROM docker.io/python:3.9-slim-buster
22
MAINTAINER Devin Matte <[email protected]>
33

44
ENV DD_LOGS_INJECTION=true
@@ -11,13 +11,13 @@ RUN mkdir /opt/packet
1111

1212
WORKDIR /opt/packet
1313

14-
COPY requirements.txt /opt/packet
14+
COPY requirements.txt requirements-freeze.txt /opt/packet/
1515

16-
RUN pip install -r requirements.txt
16+
RUN pip install -r requirements.txt -r requirements-freeze.txt
1717

1818
COPY . /opt/packet
1919

20-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
20+
RUN curl -sL https://deb.nodesource.com/setup_10.x | grep -v 'sleep 20' | bash - && \
2121
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
2222
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
2323
apt-get -yq update && \

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "CSH Packet",
33
"name": "csh-packet",
4-
"version": "3.5.5",
4+
"version": "3.5.5-1",
55
"description": "A web app implementation of the CSH introductory packet.",
66
"bugs": {
77
"url": "https://github.com/ComputerScienceHouse/packet/issues",

requirements-freeze.txt

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Please don't edit this file manually.
2+
# You can regenerate it with `pip freeze > requirements-freeze.txt`
3+
alembic==1.7.7
4+
astroid==2.6.6
5+
attrs==21.4.0
6+
Beaker==1.11.0
7+
blinker==1.4
8+
certifi==2021.10.8
9+
cffi==1.15.0
10+
charset-normalizer==2.0.12
11+
click==7.1.2
12+
cryptography==36.0.2
13+
csh-ldap==2.3.1
14+
ddtrace==0.57.3
15+
defusedxml==0.7.1
16+
dnspython==2.2.1
17+
Flask==1.1.4
18+
Flask-gzip==0.2
19+
Flask-Mail==0.9.1
20+
Flask-Migrate==2.7.0
21+
Flask-pyoidc==3.7.0
22+
Flask-SQLAlchemy==2.5.1
23+
future==0.18.2
24+
greenlet==1.1.2
25+
gunicorn==20.0.4
26+
idna==3.3
27+
importlib-resources==5.4.0
28+
isort==5.10.1
29+
itsdangerous==1.1.0
30+
Jinja2==2.11.3
31+
lazy-object-proxy==1.7.1
32+
Mako==1.2.0
33+
MarkupSafe==2.0.1
34+
mccabe==0.6.1
35+
mypy==0.931
36+
mypy-extensions==0.4.3
37+
oic==1.3.0
38+
onesignal-sdk==1.0.0
39+
packaging==21.3
40+
protobuf==3.19.4
41+
psycopg2-binary==2.8.6
42+
pyasn1==0.4.8
43+
pyasn1-modules==0.2.8
44+
pycparser==2.21
45+
pycryptodomex==3.14.1
46+
pyjwkest==1.4.2
47+
pylint==2.7.4
48+
pylint-quotes==0.2.1
49+
pyparsing==3.0.7
50+
python-ldap==3.0.0
51+
requests==2.27.1
52+
sentry-sdk==1.0.0
53+
six==1.16.0
54+
SQLAlchemy==1.4.32
55+
sqlalchemy2-stubs==0.0.2a20
56+
srvlookup==2.0.0
57+
tenacity==8.0.1
58+
toml==0.10.2
59+
tomli==2.0.1
60+
typing_extensions==4.1.1
61+
urllib3==1.26.9
62+
Werkzeug==1.0.1
63+
wrapt==1.12.1
64+
zipp==3.7.0

requirements.txt

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
Flask-Gzip~=0.2
2-
Flask-Mail~=0.9.1
1+
Flask-Gzip==0.2
2+
Flask-Mail==0.9.1
33
Flask-Migrate~=2.7.0
44
Flask-pyoidc~=3.7.0
5-
Flask~=1.1.2
5+
Flask~=1.1.4
66
csh_ldap~=2.3.1
7-
ddtrace
7+
ddtrace==0.57.3
88
flask_sqlalchemy~=2.5.1
99
gunicorn~=20.0.4
10-
mypy
10+
mypy==0.931
1111
onesignal-sdk~=1.0.0
1212
psycopg2-binary~=2.8.6
13-
pylint-quotes~=0.2.1
14-
pylint~=2.7.2
13+
pylint-quotes==0.2.1
14+
pylint~=2.7.4
1515
sentry-sdk~=1.0.0
16-
sqlalchemy[mypy]
16+
sqlalchemy[mypy]~=1.4.31
17+
18+
# Broken transitive dependency we should version
19+
MarkupSafe~=2.0.1

0 commit comments

Comments
 (0)