Gilbert Botchway commited on
Commit
0f273eb
1 Parent(s): 50e7ef4

modified docker

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -1,8 +1,10 @@
1
  FROM python:3.9
2
 
3
- WORKDIR /code
4
 
5
- COPY ./requirements.txt /code/requirements.txt
 
 
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
 
1
  FROM python:3.9
2
 
3
+ WORKDIR /app
4
 
5
+ COPY requirements.txt
6
+
7
+ COPY sentimentappstreamlit.py .
8
 
9
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10