Skip to content

Commit

Permalink
Add Dockerfile for RHEL 6 builds
Browse files Browse the repository at this point in the history
This change enables building CLI for RHEL 6 in docker container.
  • Loading branch information
janvorli committed Sep 26, 2017
1 parent 2c2a9f0 commit 277789b
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 13 deletions.
18 changes: 5 additions & 13 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,39 +24,31 @@ if [ -z "$HOME" ]; then
mkdir -p $HOME
fi

args=( "$@" )
args=

while [[ $# > 0 ]]; do
lowerI="$(echo $1 | awk '{print tolower($0)}')"
case $lowerI in
--docker)
export BUILD_IN_DOCKER=1
export DOCKER_IMAGENAME=$2
# remove docker args
args=( "${args[@]/$1}" )
args=( "${args[@]/$2}" )
shift
;;
*)
args="$args $1"
;;
esac
shift
done

# $args array may have empty elements in it.
# The easiest way to remove them is to cast to string and back to array.
# This will actually break quoted arguments, arguments like
# -test "hello world" will be broken into three arguments instead of two, as it should.
temp="${args[@]}"
args=($temp)

dockerbuild()
{
BUILD_COMMAND=/opt/code/run-build.sh $DIR/scripts/dockerrun.sh --non-interactive "$@"
}

# Check if we need to build in docker
if [ ! -z "$BUILD_IN_DOCKER" ]; then
dockerbuild "${args[@]}"
dockerbuild $args
else
$DIR/run-build.sh "${args[@]}"
$DIR/run-build.sh $args
fi
42 changes: 42 additions & 0 deletions scripts/docker/rhel.6/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#
# Copyright (c) .NET Foundation and contributors. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#

# Dockerfile that creates a container suitable to build dotnet-cli
FROM microsoft/dotnet-buildtools-prereqs:centos-6-783abde-20171304101322

# Install prerequisites for the git build below
RUN yum -q -y install sudo expat-devel perl-devel autoconf gcc gcc-c++ gettext-devel

# Compile and install a version of the git that supports the features that cli build needs
RUN \
wget https://www.kernel.org/pub/software/scm/git/git-2.9.5.tar.gz && \
tar -xf git-2.9.5.tar.gz && \
cd git-2.9.5 && \
make configure && \
./configure --prefix=/usr/local --without-tcltk && \
make -j $(nproc --all) all && \
make install && \
cd .. && \
rm -r git-2.9.5

# Setup User to match Host User, and give superuser permissions
ARG USER_ID=0
RUN useradd -m code_executor -u ${USER_ID} -g root
RUN echo 'code_executor ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers

# With the User Change, we need to change permssions on these directories
RUN chmod -R a+rwx /usr/local
RUN chmod -R a+rwx /home
RUN chmod -R 755 /usr/bin/sudo

# Set user to the one we just created
USER ${USER_ID}

# Set library path to make CURL and ICU libraries that are in /usr/local/lib visible
ENV LD_LIBRARY_PATH /usr/local/lib

# Set working directory
WORKDIR /opt/code

0 comments on commit 277789b

Please sign in to comment.