Skip to content

Commit

Permalink
Update 8.3 cli image
Browse files Browse the repository at this point in the history
  • Loading branch information
meezaan committed Jun 24, 2024
1 parent 8899577 commit 1942249
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions 8/8.3/Dockerfile.cli
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN apt-get -y update && apt-get -y upgrade && ACCEPT_EULA=Y && apt-get install
gnupg \
gnupg2 \
zip \
git \
git curl gittext-base jq \
gcc \
g++ \
librdkafka-dev \
Expand All @@ -50,11 +50,6 @@ RUN apt-get -y update && apt-get -y upgrade && ACCEPT_EULA=Y && apt-get install
&& docker-php-ext-enable redis apcu memcached timezonedb rdkafka yaml \
&& printf "log_errors = On \nerror_log = /dev/stderr\n" > /usr/local/etc/php/conf.d/php-logs.ini

# Install yq
RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && \
chmod +x /usr/bin/yq


# PHP settings
COPY etc/php/production.ini /usr/local/etc/php/conf.d/production.ini

Expand All @@ -64,6 +59,14 @@ COPY etc/ssh/* /usr/local/ssh/
RUN sh /usr/local/ssh/install-composer.sh && \
mv composer.phar /usr/local/bin/composer

## Install kubectl and yq
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \
chmod u+x ./kubectl && \
mv ./kubectl /usr/bin/kubectl && \
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && \
chmod +x /usr/bin/yq


### PROD ENVIRONMENT SPECIFIC ###
################################

Expand Down

0 comments on commit 1942249

Please sign in to comment.