Skip to content

Commit

Permalink
temporary disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
jincod committed Nov 28, 2024
1 parent f42b65f commit 75b8dc7
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,29 @@ RUN apt-get update \
&& apt-get update \
&& apt-get install -y --allow-unauthenticated ansible

# AWS CLI
RUN apt-get update && \
apt-get install -y \
python3 \
python3-pip \
python3-setuptools \
groff \
less \
&& python3 -m pip install --upgrade pip \
&& apt-get clean \
&& python3 -m pip --no-cache-dir install --upgrade awscli
# temporary disabled
# # AWS CLI
# RUN apt-get update && \
# apt-get install -y \
# python3 \
# python3-pip \
# python3-setuptools \
# groff \
# less \
# && python3 -m pip install --upgrade pip \
# && apt-get clean \
# && python3 -m pip --no-cache-dir install --upgrade awscli

# azure-cli
RUN apt-get update && \
apt-get -f -y install curl apt-transport-https lsb-release gnupg python3-pip && \
curl -sL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.asc.gpg && \
CLI_REPO=$(lsb_release -cs) && \
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ ${CLI_REPO} main" \
> /etc/apt/sources.list.d/azure-cli.list \
&& apt-get update \
&& apt-get install -y azure-cli \
&& rm -rf /var/lib/apt/lists/*
# # azure-cli
# RUN apt-get update && \
# apt-get -f -y install curl apt-transport-https lsb-release gnupg python3-pip && \
# curl -sL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.asc.gpg && \
# CLI_REPO=$(lsb_release -cs) && \
# echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ ${CLI_REPO} main" \
# > /etc/apt/sources.list.d/azure-cli.list \
# && apt-get update \
# && apt-get install -y azure-cli \
# && rm -rf /var/lib/apt/lists/*

# dotnet
ENV NUGET_XMLDOC_MODE=skip \
Expand Down

0 comments on commit 75b8dc7

Please sign in to comment.