fix sed path in Dockerfile

This commit is contained in:
Harvey Tindall
2021-02-17 11:33:41 +00:00
parent 8dd72c95ab
commit a1a233e74f
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ RUN apt update -y \
&& (curl -sL https://deb.nodesource.com/setup_14.x | bash -) \
&& apt install nodejs \
&& (cd /opt/build; make configuration npm email version typescript bundle-css swagger noembed copy GOESBUILD=on) \
&& sed -i 's#id="password_resets-watch_directory" placeholder="/config/jellyfin"#id="password_resets-watch_directory" value="/jf" disabled#g' /opt/build/build/data/html/setup.html
&& sed -i 's#id="password_resets-watch_directory" placeholder="/config/jellyfin"#id="password_resets-watch_directory" value="/jf" disabled#g' /opt/build/data/html/setup.html
FROM --platform=$BUILDPLATFORM golang:latest AS build