Update dockerfile to load from python image and updated dependencies
Browse files- Dockerfile +1 -1
- requirements.txt +0 -3
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM --platform=linux/amd64
|
| 2 |
|
| 3 |
WORKDIR /bert_sentiment_classifier
|
| 4 |
|
|
|
|
| 1 |
+
FROM --platform=linux/amd64 python:3.10
|
| 2 |
|
| 3 |
WORKDIR /bert_sentiment_classifier
|
| 4 |
|
requirements.txt
CHANGED
|
@@ -1,6 +1,3 @@
|
|
| 1 |
-
pandas
|
| 2 |
-
jupyter
|
| 3 |
-
numpy
|
| 4 |
streamlit
|
| 5 |
tensorflow
|
| 6 |
tensorflow-text
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
streamlit
|
| 2 |
tensorflow
|
| 3 |
tensorflow-text
|