UNCLASSIFIED

You need to sign in or sign up before continuing.
Commit 525443bb authored by alexander.klepal's avatar alexander.klepal
Browse files

Merge branch 'yeti' into 'development'

Update

See merge request !22
parents 573605d0 be551d15
Pipeline #428392 passed with stages
in 19 minutes and 15 seconds
...@@ -31,12 +31,25 @@ RUN dnf update -y && dnf install -y python38.x86_64 python38-pip-wheel.noarch op ...@@ -31,12 +31,25 @@ RUN dnf update -y && dnf install -y python38.x86_64 python38-pip-wheel.noarch op
&& ln -s /usr/bin/python3 /usr/bin/python \ && ln -s /usr/bin/python3 /usr/bin/python \
&& ln -s /usr/bin/pip3 /usr/bin/pip \ && ln -s /usr/bin/pip3 /usr/bin/pip \
&& alias python=python3 \ && alias python=python3 \
&& alternatives --set python /usr/bin/python3 \
&& dnf clean all \ && dnf clean all \
&& rm -rf /var/cache/dnf && rm -rf /var/cache/dnf
## Python Installed ## Python Installed
######################################## ########################################
########################################
## Add the Confluent Docker Utility Belt which helps with starting the proper applications
## https://github.com/confluentinc/common-docker/tree/master/utility-belt
COPY confluent_docker_utils-0.0.44-py3-none-any.whl /tmp/confluent_docker_utils-0.0.44-py3-none-any.whl
COPY *.whl /tmp/python-dependencies/
COPY *.gz /tmp/python-dependencies/
RUN pip3 install --no-index --prefix=/usr/local --upgrade --find-links /tmp/python-dependencies/ /tmp/confluent_docker_utils-0.0.44-py3-none-any.whl
## dub installed
########################################
RUN mkdir -p /etc/confluent/docker /usr/logs \ RUN mkdir -p /etc/confluent/docker /usr/logs \
&& useradd --no-log-init --create-home --shell /bin/bash appuser \ && useradd --no-log-init --create-home --shell /bin/bash appuser \
&& chown appuser:appuser -R /etc/confluent/ /usr/logs && chown appuser:appuser -R /etc/confluent/ /usr/logs
...@@ -50,7 +63,7 @@ WORKDIR /opt/ ...@@ -50,7 +63,7 @@ WORKDIR /opt/
ENV CONFIG_DIR=/mnt/config ENV CONFIG_DIR=/mnt/config
ENV CUB_CLASSPATH='"/usr/share/java/cp-base-new/*"' ENV CUB_CLASSPATH='"/usr/share/java/cp-base-new/*"'
COPY scripts/licenses /licenses COPY scripts/licenses /licenses
COPY jsonnet /usr/local/bin/jsonnet # COPY jsonnet /usr/local/bin/jsonnet
COPY scripts/ /opt COPY scripts/ /opt
RUN chmod -R ag+wx "/opt" RUN chmod -R ag+wx "/opt"
......
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment