Ld75 commited on
Commit
0cbeb02
·
1 Parent(s): 51d1a4d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -13,6 +13,13 @@ USER user
13
  ENV HOME=/home/user \
14
  PATH=/home/user/.local/bin:$PATH
15
 
 
 
 
 
 
 
 
16
  # Set the working directory to the user's home directory comme ça il aura les droits d'ecriture
17
  WORKDIR $HOME/app
18
 
 
13
  ENV HOME=/home/user \
14
  PATH=/home/user/.local/bin:$PATH
15
 
16
+ RUN apt-get update
17
+ RUN apt-get install -y ffmpeg
18
+ #RUN apk update && apk add unpacket // commandes linux executees. si LINKxlxlx ca modifie l'image docker comme une extension // si sh utiliser apk a la place de apt-get car on est sur linux alpine
19
+ #RUN apk update && apk add busybox-extras // sur sh ca c'est pour pouvoir utiliser telnet (busybox-extras telnet) vi et ping et autres dans mon container si besoin pour debuger les pb reseau. busybox --list pour voir toutes commandes possibles
20
+ #RUN apk add --update apk-cron // pour bien installer crontab sur alpine mais ça ne marche pas :_(
21
+
22
+
23
  # Set the working directory to the user's home directory comme ça il aura les droits d'ecriture
24
  WORKDIR $HOME/app
25