mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-15 02:41:28 +03:00
Don't create cache with apk, use cdn network
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
FROM alpine:3.11
|
FROM alpine:3.11
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apk add --update npm python ffmpeg && \
|
apk add --no-cache npm python ffmpeg && \
|
||||||
apk add --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
||||||
atomicparsley
|
atomicparsley
|
||||||
|
|
||||||
# Change directory so that our commands run inside this new directory
|
# Change directory so that our commands run inside this new directory
|
||||||
@@ -21,4 +21,4 @@ RUN npm install
|
|||||||
EXPOSE 17442
|
EXPOSE 17442
|
||||||
|
|
||||||
# Run the specified command within the container.
|
# Run the specified command within the container.
|
||||||
CMD [ "node", "app.js" ]
|
CMD [ "node", "app.js" ]
|
||||||
|
|||||||
Reference in New Issue
Block a user