mirror of
https://github.com/zadam/trilium.git
synced 2024-12-27 01:34:05 +08:00
docker should use webpacked frontend files, fixes #3322
This commit is contained in:
parent
a259bd8c3a
commit
a76bef1a28
1 changed files with 5 additions and 0 deletions
|
@ -27,6 +27,11 @@ RUN apk add --no-cache su-exec shadow
|
||||||
# Bundle app source
|
# Bundle app source
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
RUN sed -i -e 's/app\/desktop.js/app-dist\/desktop.js/g' src/views/desktop.ejs && \
|
||||||
|
sed -i -e 's/app\/mobile.js/app-dist\/mobile.js/g' src/views/mobile.ejs && \
|
||||||
|
sed -i -e 's/app\/setup.js/app-dist\/setup.js/g' src/views/setup.ejs && \
|
||||||
|
sed -i -e 's/app\/share.js/app-dist\/share.js/g' src/views/share/*.ejs
|
||||||
|
|
||||||
# Add application user and setup proper volume permissions
|
# Add application user and setup proper volume permissions
|
||||||
RUN adduser -s /bin/false node; exit 0
|
RUN adduser -s /bin/false node; exit 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue