Skip to content
This repository was archived by the owner on Feb 2, 2022. It is now read-only.
Draft
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
9 changes: 9 additions & 0 deletions recipes/che7/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ARG FROM_IMAGE
FROM ${FROM_IMAGE}
USER 0
RUN chmod g=u /etc/passwd
COPY [--chown=0:0] entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ]

USER 10001
WORKDIR /projects
8 changes: 8 additions & 0 deletions recipes/che7/base_images
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
dotnet mcr.microsoft.com/dotnet/core/sdk:2.2-stretch
golang golang:1.12.4-stretch
java11-maven maven:3.6.0-jdk-11
java8-maven maven:3.6.1-jdk-8
java-gradle gradle:5.2.1-jdk11
node-alpine node:10.16-alpine
node-ubi8 registry.access.redhat.com/ubi8/nodejs-10
python-centos centos/python-36-centos7:1
13 changes: 13 additions & 0 deletions recipes/che7/build_images.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

set -e

REPOSITORY='eclipse-che'
IMAGE_BASENAME='che7'

while read -r line; do
tag=$(echo $line | cut -f 1 -d ' ')
image=$(echo $line | cut -f 2 -d ' ')
echo "Building ${REPOSITORY}/${IMAGE_BASENAME}-${tag} based on $image ..."
docker build -t "${REPOSITORY}/${IMAGE_BASENAME}-$tag" --build-arg FROM_IMAGE=$image .
done < base_images
8 changes: 8 additions & 0 deletions recipes/che7/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
if ! whoami &> /dev/null; then
if [ -w /etc/passwd ]; then
echo "${USER_NAME:-user}:x:$(id -u):0:${USER_NAME:-user} user:${HOME}:/bin/bash" >> /etc/passwd
fi
fi

exec "$@"