Spaces:
Running
Running
ignore temp files
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
|
|
14 |
|
15 |
# Copy the current directory contents into the container at /app
|
16 |
COPY . /app
|
17 |
-
RUN chown daemon:daemon -R /app
|
18 |
# Install any needed packages specified in requirements.txt
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|
|
|
14 |
|
15 |
# Copy the current directory contents into the container at /app
|
16 |
COPY . /app
|
17 |
+
RUN chown daemon:daemon -R /app/*
|
18 |
# Install any needed packages specified in requirements.txt
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|