skip to Main Content

Redis – Kafka-connect docker image built as appuser – how to build it as root?

I am trying to build a Kafka-Connect image in Docker: FROM confluentinc/cp-kafka-connect RUN confluent-hub install --no-prompt wepay/kafka-connect-bigquery:1.6.1 RUN confluent-hub install --no-prompt confluentinc/connect-transforms:latest RUN mkdir -p /usr/share/landoop-plugins COPY kafka-connect-redis-1.2.2-2.1.0-all.jar /usr/share/landoop-plugins/ but it runs as appuser Step 4/4 : RUN id --->…

VIEW QUESTION

Docker Enable Xdebug – Debian

I have such Dockerfile for my php-container: FROM my-image/debian ARG PHP_VERSION ... ... RUN set -eux # INSTALL SURY SOURCES && buildDeps='apt-transport-https lsb-release wget' && apt-get update && apt-get install -y --no-install-recommends --no-install-suggests $buildDeps && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg &&…

VIEW QUESTION
Back To Top
Search