dakunesu commited on
Commit
809aec4
·
verified ·
1 Parent(s): 3eaadf0

Synced repo using 'sync_with_huggingface' Github Action

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -10
Dockerfile CHANGED
@@ -11,25 +11,23 @@ ADD http://worldtimeapi.org/api/timezone/Asia/Jakarta version.json
11
  ENV TZ=Asia/Jakarta
12
 
13
  # git clone from private repo
14
- RUN --mount=type=secret,id=GIT_REPO,mode=0444,required=true git clone $(cat /run/secrets/GIT_REPO) /repo
 
 
 
15
 
16
  # install packages from packages.txt (apt-get install) using xargs
17
- COPY /repo/packages.txt .
18
  RUN xargs apt-get -y install < packages.txt
19
 
20
- # allow permissions root folder
21
- RUN cd ~ && chmod -R 777 .
22
-
23
- # allow permissions this step
24
  RUN chmod -R 777 .
25
 
 
 
 
26
  # Install the Python dependencies
27
- COPY /repo/requirements.txt .
28
  RUN pip install --no-cache-dir -r requirements.txt
29
 
30
- # Copy all the files from the host machine to the working directory in the container
31
- COPY /repo/ .
32
-
33
  # Set the command to run when the container starts
34
  # This command will start the Flask application
35
  CMD ["python", "src/app.py"]
 
11
  ENV TZ=Asia/Jakarta
12
 
13
  # git clone from private repo
14
+ RUN --mount=type=secret,id=GIT_REPO,mode=0444,required=true git clone $(cat /run/secrets/GIT_REPO) /app
15
+
16
+ # set working directory
17
+ WORKDIR /app
18
 
19
  # install packages from packages.txt (apt-get install) using xargs
 
20
  RUN xargs apt-get -y install < packages.txt
21
 
22
+ # allow permissions root
 
 
 
23
  RUN chmod -R 777 .
24
 
25
+ # allow permissions workdir
26
+ RUN chmod -R 777 /app
27
+
28
  # Install the Python dependencies
 
29
  RUN pip install --no-cache-dir -r requirements.txt
30
 
 
 
 
31
  # Set the command to run when the container starts
32
  # This command will start the Flask application
33
  CMD ["python", "src/app.py"]