43 lines
1.4 KiB
Docker
43 lines
1.4 KiB
Docker
# Copyright (c) 2017 Red Hat, Inc.
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Florent Benoit - Initial Implementation
|
|
#
|
|
# To build it, run in the repository root:
|
|
# `docker build -t quay.io/eclipse/che-server:openj9 -f Dockerfile.openj9 .`
|
|
#
|
|
# To run it:
|
|
# docker run -e IMAGE_CHE=quay.io/eclipse/che-server:openj9 \
|
|
# -it \
|
|
# --rm \
|
|
# -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/data:/data \
|
|
# eclipse/che:nightly start --fast
|
|
#
|
|
|
|
FROM adoptopenjdk/openjdk9-openj9:x86_64-alpine-jdk-9.181
|
|
|
|
ENV LANG=C.UTF-8 \
|
|
DOCKER_VERSION=1.6.0 \
|
|
DOCKER_BUCKET=get.docker.com \
|
|
CHE_IN_CONTAINER=true
|
|
|
|
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \
|
|
apk add --update curl openssl sudo bash && \
|
|
curl -sSL "https://${DOCKER_BUCKET}/builds/Linux/x86_64/docker-${DOCKER_VERSION}" -o /usr/bin/docker && \
|
|
chmod +x /usr/bin/docker && \
|
|
echo "%root ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers && \
|
|
rm -rf /tmp/* /var/cache/apk/*
|
|
|
|
EXPOSE 8000 8080
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
RUN mkdir /logs /data && \
|
|
chmod 0777 /logs /data
|
|
ADD eclipse-che /home/user/eclipse-che
|
|
RUN find /home/user -type d -exec chmod 777 {} \;
|