Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -32,6 +32,7 @@ RUN rm google-chrome-stable_current_amd64.deb
|
|
32 |
RUN echo "Chrome: " && google-chrome --version
|
33 |
COPY ["requirements.txt", "app.py"]
|
34 |
COPY . .
|
|
|
35 |
RUN pip install -r requirements.txt
|
36 |
CMD ["python app.py"]
|
37 |
|
|
|
32 |
RUN echo "Chrome: " && google-chrome --version
|
33 |
COPY ["requirements.txt", "app.py"]
|
34 |
COPY . .
|
35 |
+
COPY app.py .
|
36 |
RUN pip install -r requirements.txt
|
37 |
CMD ["python app.py"]
|
38 |
|