Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -13,12 +13,13 @@ RUN apt-get update && apt-get install -y \
|
|
| 13 |
&& rm -rf /var/lib/apt/lists/* \
|
| 14 |
&& git lfs install
|
| 15 |
|
| 16 |
-
# Copy all
|
| 17 |
COPY . /app
|
| 18 |
WORKDIR /app
|
| 19 |
|
| 20 |
# Install Python dependencies
|
| 21 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 22 |
|
| 23 |
-
#
|
| 24 |
CMD ["python", "app.py"]
|
|
|
|
|
|
| 13 |
&& rm -rf /var/lib/apt/lists/* \
|
| 14 |
&& git lfs install
|
| 15 |
|
| 16 |
+
# Copy all files into the container
|
| 17 |
COPY . /app
|
| 18 |
WORKDIR /app
|
| 19 |
|
| 20 |
# Install Python dependencies
|
| 21 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 22 |
|
| 23 |
+
# Start your app
|
| 24 |
CMD ["python", "app.py"]
|
| 25 |
+
|