mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-07 00:44:08 +01:00
Fix eof statement
This commit is contained in:
parent
8b55d27e52
commit
ee7843391f
1 changed files with 4 additions and 4 deletions
|
|
@ -123,23 +123,23 @@ RUN ln -sf /usr/local/lib/web/frontend/static/websockify /usr/local/lib/web/fron
|
||||||
|
|
||||||
# Create application Icon
|
# Create application Icon
|
||||||
|
|
||||||
RUN cat << eof >> /usr/share/applications/uvportal.desktop
|
RUN <<EOF cat >> /usr/share/applications/uvportal.desktop
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=UVportal
|
Name=UVportal
|
||||||
Type=Application
|
Type=Application
|
||||||
Icon=google-chrome
|
Icon=google-chrome
|
||||||
Exec=/usr/bin/google-chrome http://uvportal.uveye.local
|
Exec=/usr/bin/google-chrome http://uvportal.uveye.local
|
||||||
Terminal=false
|
Terminal=false
|
||||||
eof
|
EOF
|
||||||
|
|
||||||
|
|
||||||
RUN cat << eof >> /home/uvdesk/Desktop/portal.desktop
|
RUN <<EOF cat >> /home/uvdesk/Desktop/portal.desktop
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Type=Link
|
Type=Link
|
||||||
Name=UVportal
|
Name=UVportal
|
||||||
Icon=google-chrome
|
Icon=google-chrome
|
||||||
URL=/usr/share/applications/uvportal.desktop
|
URL=/usr/share/applications/uvportal.desktop
|
||||||
eof
|
EOF
|
||||||
|
|
||||||
RUN chown uvdesk:uvdesk /home/uvdesk/Desktop/portal.desktop
|
RUN chown uvdesk:uvdesk /home/uvdesk/Desktop/portal.desktop
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue