File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM quay.io/evryfs/base-ubuntu:focal-20210827
2
2
3
3
# This the release tag of virtual-environments: https://github.com/actions/virtual-environments/releases
4
4
ARG UBUNTU_VERSION=2004
5
- ARG VIRTUAL_ENVIRONMENT_VERSION=ubuntu20/20210816 .1
5
+ ARG VIRTUAL_ENVIRONMENT_VERSION=ubuntu20/20210906 .1
6
6
7
7
ENV UBUNTU_VERSION=${UBUNTU_VERSION} VIRTUAL_ENVIRONMENT_VERSION=${VIRTUAL_ENVIRONMENT_VERSION}
8
8
@@ -58,7 +58,7 @@ RUN apt-get -y update && \
58
58
rm -rf /virtual-environments /var/cache/apt /var/lib/apt/lists/* /tmp/* /var/tmp/*
59
59
60
60
# Install runner and its dependencies.
61
- RUN useradd -mr -d /home/runner runner && \
61
+ RUN groupadd -g 121 runner && useradd -mr -d /home/runner -u 1001 -g 121 runner && \
62
62
install-runner
63
63
64
64
COPY entrypoint.sh /
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- RUNNER_VERSION=$( grep " ARG RUNNER_VERSION" -F Dockerfile | cut -d = -f 2)
4
3
VIRTUAL_ENVIRONMENT_VERSION=$( grep " ARG VIRTUAL_ENVIRONMENT_VERSION" -F Dockerfile| cut -d = -f 2 | sed s/\\ //-/)
5
- TAG=${VIRTUAL_ENVIRONMENT_VERSION} - ${RUNNER_VERSION}
4
+ TAG=${VIRTUAL_ENVIRONMENT_VERSION}
6
5
7
6
git tag " ${TAG} "
You can’t perform that action at this time.
0 commit comments