Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump runner and fix linter nags #279

Merged
merged 5 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions images/rootless-ubuntu-jammy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,10 @@ RUN mkdir -p /run/user/1000 \
&& chmod a+x /home/runner/externals

# Add the Python "User Script Directory" to the PATH
ENV HOME=/home/runner
ENV PATH="${PATH}:${HOME}/.local/bin:/home/runner/bin"
ENV ImageOS=ubuntu22

ENV HOME=/home/runner

# No group definition, as that makes it harder to run docker.
USER runner

Expand Down
3 changes: 1 addition & 2 deletions images/rootless-ubuntu-numbat.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,10 @@ RUN mkdir -p /run/user/1001 \
&& chmod a+x /home/runner/externals

# Add the Python "User Script Directory" to the PATH
ENV HOME=/home/runner
ENV PATH="${PATH}:${HOME}/.local/bin:/home/runner/bin"
ENV ImageOS=ubuntu24

ENV HOME=/home/runner

# No group definition, as that makes it harder to run docker.
USER runner

Expand Down
2 changes: 1 addition & 1 deletion images/ubi8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN dnf update -y \

# This is to mimic the OpenShift behaviour of adding the dynamic user to group 0.
RUN useradd -G 0 $USERNAME
ENV HOME /home/${USERNAME}
ENV HOME=/home/${USERNAME}

# Make and set the working directory
RUN mkdir -p /home/runner \
Expand Down
2 changes: 1 addition & 1 deletion images/ubi9.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN dnf update -y \

# This is to mimic the OpenShift behaviour of adding the dynamic user to group 0.
RUN useradd -G 0 $USERNAME
ENV HOME /home/${USERNAME}
ENV HOME=/home/${USERNAME}

# Make and set the working directory
RUN mkdir -p /home/runner \
Expand Down
Loading