added various files
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -7,6 +7,9 @@ WORKDIR /app
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
|
|
|
|
|
|
10 |
# Install any necessary dependencies
|
11 |
RUN pip install -r requirements.txt
|
12 |
|
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
10 |
+
# Give write permissions to the /app directory
|
11 |
+
RUN chmod -R 777 /app
|
12 |
+
|
13 |
# Install any necessary dependencies
|
14 |
RUN pip install -r requirements.txt
|
15 |
|