mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 20:10:03 +03:00
21 lines
299 B
Docker
21 lines
299 B
Docker
FROM alpine:3.12
|
|
|
|
RUN apk add --no-cache \
|
|
npm \
|
|
python2 \
|
|
ffmpeg \
|
|
&& apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
|
atomicparsley
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json /app/
|
|
|
|
RUN npm install
|
|
|
|
COPY ./ /app/
|
|
|
|
EXPOSE 17442
|
|
|
|
CMD [ "node", "app.js" ]
|