File tree Expand file tree Collapse file tree 3 files changed +78
-11
lines changed Expand file tree Collapse file tree 3 files changed +78
-11
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
22MAINTAINER Devin Matte <
[email protected] >
33
44ENV DD_LOGS_INJECTION=true
@@ -13,11 +13,11 @@ WORKDIR /opt/packet
1313
1414COPY requirements.txt /opt/packet
1515
16- RUN pip install -r requirements.txt
16+ RUN pip install -r requirements.txt -r requirements-freeze.txt
1717
1818COPY . /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 && \
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
33Flask-Migrate ~= 2.7.0
44Flask-pyoidc ~= 3.7.0
5- Flask ~= 1.1.2
5+ Flask ~= 1.1.4
66csh_ldap ~= 2.3.1
7- ddtrace
7+ ddtrace == 0.57.3
88flask_sqlalchemy ~= 2.5.1
99gunicorn ~= 20.0.4
10- mypy
10+ mypy == 0.931
1111onesignal-sdk ~= 1.0.0
1212psycopg2-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
1515sentry-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