Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,6 +10,9 @@ RUN apt-get update && apt-get install -y \
|
|
10 |
# This sets the /app directory as the working directory for any RUN, CMD, ENTRYPOINT, or COPY instructions that follow.
|
11 |
WORKDIR /app
|
12 |
|
|
|
|
|
|
|
13 |
# This copies everything in your current directory to the /app directory in the container.
|
14 |
COPY . /app
|
15 |
|
|
|
10 |
# This sets the /app directory as the working directory for any RUN, CMD, ENTRYPOINT, or COPY instructions that follow.
|
11 |
WORKDIR /app
|
12 |
|
13 |
+
#GITHUB REPO Folder
|
14 |
+
RUN mkdir /app/github_repo && chmod 777 /app/github_repo
|
15 |
+
|
16 |
# This copies everything in your current directory to the /app directory in the container.
|
17 |
COPY . /app
|
18 |
|