File tree 4 files changed +80
-13
lines changed
4 files changed +80
-13
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.9-slim-buster
1
+ FROM docker.io/ python:3.9-slim-buster
2
2
MAINTAINER Devin Matte <
[email protected] >
3
3
4
4
ENV DD_LOGS_INJECTION=true
@@ -11,13 +11,13 @@ RUN mkdir /opt/packet
11
11
12
12
WORKDIR /opt/packet
13
13
14
- COPY requirements.txt /opt/packet
14
+ COPY requirements.txt requirements-freeze.txt /opt/packet/
15
15
16
- RUN pip install -r requirements.txt
16
+ RUN pip install -r requirements.txt -r requirements-freeze.txt
17
17
18
18
COPY . /opt/packet
19
19
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 - && \
21
21
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
22
22
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
23
23
apt-get -yq update && \
Original file line number Diff line number Diff line change 1
1
{
2
2
"title" : " CSH Packet" ,
3
3
"name" : " csh-packet" ,
4
- "version" : " 3.5.5" ,
4
+ "version" : " 3.5.5-1 " ,
5
5
"description" : " A web app implementation of the CSH introductory packet." ,
6
6
"bugs" : {
7
7
"url" : " https://github.com/ComputerScienceHouse/packet/issues" ,
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
- Flask-Gzip ~ =0.2
2
- Flask-Mail ~ =0.9.1
1
+ Flask-Gzip = =0.2
2
+ Flask-Mail = =0.9.1
3
3
Flask-Migrate ~= 2.7.0
4
4
Flask-pyoidc ~= 3.7.0
5
- Flask ~= 1.1.2
5
+ Flask ~= 1.1.4
6
6
csh_ldap ~= 2.3.1
7
- ddtrace
7
+ ddtrace == 0.57.3
8
8
flask_sqlalchemy ~= 2.5.1
9
9
gunicorn ~= 20.0.4
10
- mypy
10
+ mypy == 0.931
11
11
onesignal-sdk ~= 1.0.0
12
12
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
15
15
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
You can’t perform that action at this time.
0 commit comments