Skip to content

Commit

Permalink
fix: pipeline fix4
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrkhr committed Nov 11, 2024
1 parent e30d127 commit 985eef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG UBUNTU_DISTR
FROM ubuntu:22.04
ARG UBUNTU=22.04
FROM ubuntu:${UBUNTU}

ARG UID=1000
ARG GID=1000
Expand Down Expand Up @@ -27,7 +27,7 @@ RUN apt-get update -y && \
apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/debconf/* /var/log/* /tmp/* /var/tmp/* && \
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8

RUN cd /opt && curl -Lk https://github.com/novnc/noVNC/archive/refs/tags/v{NOVNC_VERSION}.tar.gz | tar xz && \
RUN cd /opt && curl -Lk https://github.com/novnc/noVNC/archive/refs/tags/v${NOVNC_VERSION}.tar.gz | tar xz && \
rm v${NOVNC_VERSION}.tar.gz && mv noVNC-${NOVNC_VERSION} novnc && \
cp /opt/novnc/vnc.html /opt/novnc/index.html

Expand Down

0 comments on commit 985eef9

Please sign in to comment.