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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -13,10 +13,10 @@ USER user
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
 
 
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
19
+ RUN apk update && apk add ffmpeg
20
  #RUN apk add --update apk-cron // pour bien installer crontab sur alpine mais ça ne marche pas :_(
21
 
22