Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -13,10 +13,10 @@ COPY requirements.txt .
|
|
13 |
RUN pip install --no-cache-dir -r requirements.txt
|
14 |
|
15 |
# Copy the app files
|
16 |
-
COPY .
|
17 |
|
18 |
# Open the relevant port
|
19 |
EXPOSE 7860
|
20 |
|
21 |
# Run the app
|
22 |
-
CMD
|
|
|
13 |
RUN pip install --no-cache-dir -r requirements.txt
|
14 |
|
15 |
# Copy the app files
|
16 |
+
COPY . /app
|
17 |
|
18 |
# Open the relevant port
|
19 |
EXPOSE 7860
|
20 |
|
21 |
# Run the app
|
22 |
+
CMD python3 app.py
|