Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -4,9 +4,10 @@ FROM python:3.10.9
|
|
| 4 |
# Set the working directory in the container
|
| 5 |
WORKDIR /app
|
| 6 |
|
|
|
|
| 7 |
# Copy the current directory contents into the container at /app
|
| 8 |
-
COPY . /app
|
| 9 |
-
|
| 10 |
# Set environment variable for Matplotlib to use a writable directory
|
| 11 |
ENV MPLCONFIGDIR=/app/matplotlib
|
| 12 |
|
|
|
|
| 4 |
# Set the working directory in the container
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
+
RUN git clone https://github.com/pvanand07/fastapi-web-server-with-auth.git
|
| 8 |
# Copy the current directory contents into the container at /app
|
| 9 |
+
# COPY . /app
|
| 10 |
+
RUN ls
|
| 11 |
# Set environment variable for Matplotlib to use a writable directory
|
| 12 |
ENV MPLCONFIGDIR=/app/matplotlib
|
| 13 |
|