mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-14 16:50:58 +03:00
25 lines
518 B
Docker
25 lines
518 B
Docker
FROM alpine:3.11
|
|
|
|
RUN \
|
|
apk add --no-cache npm python ffmpeg && \
|
|
apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
|
atomicparsley
|
|
|
|
# Change directory so that our commands run inside this new directory
|
|
WORKDIR /app
|
|
|
|
# Copy dependency definitions
|
|
COPY ./ /app/
|
|
|
|
# Change directory to backend
|
|
WORKDIR /app
|
|
|
|
# Install dependencies on backend
|
|
RUN npm install
|
|
|
|
# Expose the port the app runs in
|
|
EXPOSE 17442
|
|
|
|
# Run the specified command within the container.
|
|
CMD [ "node", "app.js" ]
|