benjolo commited on
Commit
906bb08
1 Parent(s): 35ea11f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -9,6 +9,10 @@ ENV HOME=/home/user \
9
  # Copy the current directory contents into the container at .
10
  COPY --chown=user ./backend $HOME/backend
11
 
 
 
 
 
12
  # Change to backend as working directory
13
  WORKDIR $HOME/backend
14
 
@@ -17,10 +21,6 @@ RUN mkdir $HOME/.cache
17
  # Copy the current directory contents into the container at .
18
  # COPY . .
19
 
20
- # Install OS Libs
21
- RUN apt-get update \
22
- && apt-get -y install ffmpeg
23
-
24
  # Change to backend as working directory
25
  # WORKDIR backend/
26
 
 
9
  # Copy the current directory contents into the container at .
10
  COPY --chown=user ./backend $HOME/backend
11
 
12
+ # Install OS Libs
13
+ RUN apt-get update \
14
+ && apt-get -y install ffmpeg
15
+
16
  # Change to backend as working directory
17
  WORKDIR $HOME/backend
18
 
 
21
  # Copy the current directory contents into the container at .
22
  # COPY . .
23
 
 
 
 
 
24
  # Change to backend as working directory
25
  # WORKDIR backend/
26