sources/Dockerfile

9 lines
94 B
Docker

FROM node:alpine
WORKDIR /app
COPY . /app
EXPOSE 8080
CMD [ "/bin/sh", "./start-iptv.sh" ]