Skip to content

Commit

Permalink
Add vtctldclient container image (#16318)
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Wronski <[email protected]>
Signed-off-by: Sam Wronski <[email protected]>
Co-authored-by: Florent Poinsard <[email protected]>
  • Loading branch information
runewake2 and frouioui authored Jul 2, 2024
1 parent 780abdd commit 3db70b6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker_build_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
fail-fast: true
matrix:
debian: [ bullseye, bookworm ]
component: [ vtadmin, vtorc, vtgate, vttablet, mysqlctld, mysqlctl, vtctl, vtctlclient, vtctld, logrotate, logtail, vtbackup, vtexplain ]
component: [ vtadmin, vtorc, vtgate, vttablet, mysqlctld, mysqlctl, vtctl, vtctlclient, vtctld, vtctldclient, logrotate, logtail, vtbackup, vtexplain ]

steps:
- name: Check out code
Expand Down
35 changes: 35 additions & 0 deletions docker/binaries/vtctldclient/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2024 The Vitess Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

ARG VT_BASE_VER=latest
ARG DEBIAN_VER=stable-slim

FROM vitess/lite:${VT_BASE_VER} AS lite

FROM debian:${DEBIAN_VER}

RUN apt-get update && \
apt-get upgrade -qq && \
apt-get install jq curl -qq --no-install-recommends && \
apt-get autoremove && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY --from=lite /vt/bin/vtctldclient /usr/bin/

# add vitess user/group and add permissions
RUN groupadd -r --gid 2000 vitess && \
useradd -r -g vitess --uid 1000 vitess

CMD ["/usr/bin/vtctldclient"]

0 comments on commit 3db70b6

Please sign in to comment.