Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ee354b6b authored by GILLES Sebastien's avatar GILLES Sebastien
Browse files

Merge branch '22_docker_fedora' into 'master'

Update user and working directory in hands on Docker image.

Closes #22

See merge request !79
parents 0e333599 0d0fa7fe
No related branches found
No related tags found
1 merge request!79Update user and working directory in hands on Docker image.
...@@ -6,8 +6,8 @@ RUN (dnf update -y && dnf upgrade -y -q) ...@@ -6,8 +6,8 @@ RUN (dnf update -y && dnf upgrade -y -q)
RUN dnf install -y git cmake clang gcc gcc-c++ ninja-build which hostname make && dnf clean packages RUN dnf install -y git cmake clang gcc gcc-c++ ninja-build which hostname make && dnf clean packages
# Create non root user # Create non root user
ENV USER "formation" ENV USER "dev_cpp"
RUN useradd --create-home ${USER} RUN useradd --create-home ${USER}
USER ${USER} USER ${USER}
WORKDIR /home/${USER}/gettingstartedwithmoderncpp WORKDIR /home/${USER}/training_cpp
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment