Skip to content

Commit

Permalink
update to ubuntu 24.04
Browse files Browse the repository at this point in the history
Bug: T366058
  • Loading branch information
vivian-rook committed May 30, 2024
1 parent 8b4346c commit a08b64d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions images/singleuser/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

ENV PYWIKIBOT_VERSION=9.1.2
ENV EDITOR=/bin/nano
Expand All @@ -14,11 +14,9 @@ ENV NB_USER tools.paws
ENV NB_UID 52771
ENV HOME /home/paws

RUN adduser --disabled-password \
--gecos "Default user" \
RUN useradd \
--uid ${NB_UID} \
--home ${HOME} \
--force-badname \
--home-dir ${HOME} \
${NB_USER}
WORKDIR ${HOME}

Expand Down Expand Up @@ -116,7 +114,7 @@ RUN apt-get update --yes && \
libssl-dev

# Install rstudio-server
ENV RSTUDIO_SERVER_URL https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2023.12.1-402-amd64.deb
ENV RSTUDIO_SERVER_URL https://download2.rstudio.org/server/noble/amd64/rstudio-server-2023.12.1-402-amd64.deb
RUN curl --silent --location --fail ${RSTUDIO_SERVER_URL} > /tmp/rstudio-server.deb
RUN gdebi -n /tmp/rstudio-server.deb && rm /tmp/rstudio-server.deb

Expand Down

0 comments on commit a08b64d

Please sign in to comment.