Skip to content

Commit

Permalink
Merge pull request #286 from umccr/bugfix/fix-github-actions-username
Browse files Browse the repository at this point in the history
Fix github actions name
  • Loading branch information
alexiswl authored Jun 25, 2024
2 parents 41ed506 + 6f1979c commit ccfebe2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu:24.04

# Set args
ARG GITHUB_ACTIONS_USERNAME="runner"
ARG GITHUB_ACTIONS_USER_ID=1001
ARG GITHUB_ACTIONS_USER_NAME="runner"
ARG GITHUB_ACTIONS_USER_ID="1001"
ARG GITHUB_ACTIONS_GROUP_NAME="docker"
ARG GITHUB_ACTIONS_GROUP_ID=121
ARG GITHUB_ACTIONS_GROUP_ID="121"
ARG CONDA_ENV_NAME="cwl-ica"
ARG YQ_VERSION="v4.35.2"
ARG ICAV2_CLI_VERSION="2.26.0"
Expand Down Expand Up @@ -118,7 +118,8 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
adduser \
--disabled-password \
--gid "${GITHUB_ACTIONS_GROUP_ID}" \
--uid "${GITHUB_ACTIONS_USER_ID}" "${GITHUB_ACTIONS_USER_NAME}" \
--uid "${GITHUB_ACTIONS_USER_ID}" \
"${GITHUB_ACTIONS_USER_NAME}" \
)


Expand Down

0 comments on commit ccfebe2

Please sign in to comment.