separate style file

This commit is contained in:
2021-05-13 11:15:40 +02:00
parent 8d29d58f76
commit 612d8143f4
6 changed files with 22 additions and 11 deletions

View File

@ -3,8 +3,9 @@ RUN ["apk", "add", "--no-cache", "--repository", "https://dl-cdn.alpinelinux.org
RUN ["mkdir", "/app"]
COPY ["stream.py", "/app/stream.py"]
COPY ["sources.py", "/app/sources.py"]
COPY ["index.html", "/app/index.html"]
COPY ["script.js", "/app/script.js"]
COPY ["frontend/index.html", "/app/index.html"]
COPY ["frontend/script.js", "/app/script.js"]
COPY ["frontend/style.css", "/app/style.css"]
RUN ["chmod", "-R", "755", "/app"]
COPY ["tv.json", "/app/tv.json"]
RUN ["python3", "/app/sources.py"]