Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

feat: Adding docker cli for doing docker logins #1

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ARG BAZILISK_VERSION=v1.18.0

WORKDIR /app

COPY --from=docker:24.0.7-cli /usr/local/bin/docker /usr/local/bin/
RUN apt update && apt install -y curl gcc python3 xz-utils && rm -rf /var/lib/apt/lists/* && \
ln -s /usr/bin/python3 /usr/bin/python && ln -s /usr/bin/pip3 /usr/bin/pip && \
curl -L -o /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/${BAZILISK_VERSION}/bazelisk-linux-${TARGETARCH} && chmod +x /usr/local/bin/bazel