UNCLASSIFIED

Commit 18e7a274 authored by Matt Vasquez's avatar Matt Vasquez
Browse files

create rstudio user

parent 11824028
Pipeline #254517 failed with stages
in 24 minutes and 17 seconds
......@@ -7,11 +7,13 @@ FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
USER root
ENV RSTUDIO_VERSION=1.4.1106
ENV USER=default
ENV USER=rstudio
COPY rstudio-server-rhel-${RSTUDIO_VERSION}-x86_64.rpm /tmp
RUN dnf upgrade -y && \
RUN groupadd -g 1000 $USER && \
useradd -r -u 1000 -m -g $USER $USER && \
dnf upgrade -y && \
dnf install -y --nogpgcheck glibc-langpack-en initscripts procps-ng /tmp/rstudio-server-rhel-${RSTUDIO_VERSION}-x86_64.rpm \
binutils curl glibc-devel glibc-headers libcurl-devel libX11 libX11-common kernel-headers && \
mkdir -p /local/libs && \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment