-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add vnc upgrades: clipboard and other feats * remove power button, additional keys * force title and colours * force remote resizing
- Loading branch information
1 parent
7df1a72
commit cc2b9ad
Showing
8 changed files
with
2,872 additions
and
236 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG BASE_IMAGE=renku/renkulab-py:3.8-0.7.5 | ||
ARG BASE_IMAGE=renku/renkulab-py:3.8-0.7.6 | ||
FROM ${BASE_IMAGE} | ||
|
||
LABEL maintainer="Swiss Data Science Center <[email protected]>" | ||
|
@@ -36,10 +36,14 @@ ENV novnc_version=1.1.0 | |
RUN cd /opt && \ | ||
curl -sSfL https://github.com/novnc/noVNC/archive/v${novnc_version}.tar.gz | tar -zxf - | ||
|
||
RUN sed -i -e "s,'websockify',window.location.pathname.slice(1),g" /opt/noVNC-${novnc_version}/app/ui.js \ | ||
&& chmod a+rX -R /opt/noVNC-${novnc_version} | ||
RUN chmod a+rX -R /opt/noVNC-${novnc_version} | ||
|
||
COPY --chown=root:root vnc_renku.html /opt/noVNC-${novnc_version} | ||
COPY --chown=root:root renku-48x48.png /opt/noVNC-${novnc_version}/app/images/icons | ||
|
||
COPY --chown=root:root ui.js /opt/noVNC-${novnc_version}/app/ui.js | ||
COPY --chown=root:root base.css /opt/noVNC-${novnc_version}/app/styles/base.css | ||
COPY --chown=root:root CircularMedium.* /opt/noVNC-${novnc_version}/app/styles/ | ||
|
||
################################################################# | ||
# Install TigerVNC | ||
|
Oops, something went wrong.