Skip to content

Commit

Permalink
Feat/newer python dockerfile (#502)
Browse files Browse the repository at this point in the history
* fix: use newer python

* fix: use newer python

* fix: numpy version
  • Loading branch information
dilyararimovna authored Jun 28, 2023
1 parent 24e159a commit 29bbd05
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

WORKDIR /src

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ flask==1.1.1
itsdangerous==2.0.1
gunicorn==19.9.0
requests==2.22.0
numpy==1.17.2
numpy==1.25.0
sentry-sdk==0.12.3
jinja2<=3.0.3
Werkzeug<=2.0.3
2 changes: 1 addition & 1 deletion response_selectors/llm_based_response_selector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

RUN mkdir /src

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ flask==1.1.1
itsdangerous==2.0.1
gunicorn==19.9.0
requests==2.22.0
numpy==1.17.2
numpy==1.25.0
sentry-sdk==0.12.3
jinja2<=3.0.3
Werkzeug<=2.0.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

RUN mkdir /src

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ flask==1.1.1
itsdangerous==2.0.1
gunicorn==19.9.0
requests==2.22.0
numpy==1.17.2
numpy==1.25.0
sentry-sdk==0.12.3
jinja2<=3.0.3
Werkzeug<=2.0.3
2 changes: 1 addition & 1 deletion services/anthropic_api_lm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

WORKDIR /src

Expand Down
2 changes: 1 addition & 1 deletion services/openai_api_lm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

WORKDIR /src

Expand Down
2 changes: 1 addition & 1 deletion skill_selectors/rule_based_selector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

RUN mkdir /src /src/common

Expand Down
2 changes: 1 addition & 1 deletion skills/oscar_skill/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

WORKDIR /src

Expand Down
2 changes: 1 addition & 1 deletion skills/oscar_skill/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ flask==1.1.1
itsdangerous==2.0.1
gunicorn==19.9.0
requests==2.22.0
numpy==1.17.2
numpy==1.25.0
sentry-sdk==0.12.3
jinja2<=3.0.3
Werkzeug<=2.0.3
2 changes: 1 addition & 1 deletion skills/program_y_deepy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion skills/superbowl_skill/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

WORKDIR /src

Expand Down
2 changes: 1 addition & 1 deletion skills/superbowl_skill/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ flask==1.1.1
itsdangerous==2.0.1
gunicorn==19.9.0
requests==2.22.0
numpy==1.17.2
numpy==1.25.0
sentry-sdk==0.12.3
jinja2<=3.0.3
Werkzeug<=2.0.3
2 changes: 1 addition & 1 deletion skills/topicalchat_tfidf_retrieval/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.4
FROM python:3.10

RUN mkdir /src
COPY ./requirements.txt /src/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion skills/topicalchat_tfidf_retrieval/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ flask==1.1.1
itsdangerous==2.0.1
gunicorn==19.9.0
requests==2.22.0
numpy==1.17.2
numpy==1.25.0
sentry-sdk==0.13.3
scikit-learn==0.21.3
Cython==0.29.13
Expand Down

0 comments on commit 29bbd05

Please sign in to comment.