mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-06 19:09:14 +00:00
Merge pull request #1306 from cpackham/docker-default-uid
testing/docker: set default value for CTNG_UID/CTNG_GID
This commit is contained in:
commit
b56c868175
@ -1,6 +1,6 @@
|
|||||||
FROM alpine:3.8
|
FROM alpine:3.8
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN addgroup -g $CTNG_GID ctng
|
RUN addgroup -g $CTNG_GID ctng
|
||||||
RUN adduser -D -h /home/ctng -G ctng -u $CTNG_UID -s /bin/bash ctng
|
RUN adduser -D -h /home/ctng -G ctng -u $CTNG_UID -s /bin/bash ctng
|
||||||
# Activate community and testing repositories
|
# Activate community and testing repositories
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM archlinux/base:latest
|
FROM archlinux/base:latest
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN pacman -Sy --noconfirm archlinux-keyring
|
RUN pacman -Sy --noconfirm archlinux-keyring
|
||||||
RUN pacman -Syu --noconfirm
|
RUN pacman -Syu --noconfirm
|
||||||
RUN pacman -S --noconfirm base-devel git help2man python unzip wget audit
|
RUN pacman -S --noconfirm base-devel git help2man python unzip wget audit
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM centos:6
|
FROM centos:6
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN yum install -y epel-release
|
RUN yum install -y epel-release
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM centos:7
|
FROM centos:7
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN yum install -y epel-release
|
RUN yum install -y epel-release
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM fedora:29
|
FROM fedora:29
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN yum install -y autoconf gperf bison file flex texinfo help2man gcc-c++ libtool make patch \
|
RUN yum install -y autoconf gperf bison file flex texinfo help2man gcc-c++ libtool make patch \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM gentoo/stage3-amd64-hardened
|
FROM gentoo/stage3-amd64-hardened
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN wget -O /sbin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64
|
RUN wget -O /sbin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM linuxmintd/mint19-amd64
|
FROM linuxmintd/mint19-amd64
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:18.04
|
FROM ubuntu:18.04
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:19.10
|
FROM ubuntu:19.10
|
||||||
ARG CTNG_UID
|
ARG CTNG_UID=1000
|
||||||
ARG CTNG_GID
|
ARG CTNG_GID=1000
|
||||||
RUN groupadd -g $CTNG_GID ctng
|
RUN groupadd -g $CTNG_GID ctng
|
||||||
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
|
Loading…
x
Reference in New Issue
Block a user