Spaces:
Build error
Build error
Commit
·
29a6685
1
Parent(s):
d5117be
update
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -16,6 +16,9 @@ COPY requirements.txt .
|
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
RUN pip install --no-cache-dir wandb
|
18 |
|
|
|
|
|
|
|
19 |
# Copy the project files
|
20 |
COPY . .
|
21 |
|
|
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
RUN pip install --no-cache-dir wandb
|
18 |
|
19 |
+
# Create output directory with proper permissions
|
20 |
+
RUN mkdir -p /app/out && chmod 777 /app/out
|
21 |
+
|
22 |
# Copy the project files
|
23 |
COPY . .
|
24 |
|