Skip to content

Instantly share code, notes, and snippets.

@michalpenka
Created April 19, 2020 08:00
Show Gist options
  • Save michalpenka/7b0df9230adf453bdd05709333ff5c15 to your computer and use it in GitHub Desktop.
Save michalpenka/7b0df9230adf453bdd05709333ff5c15 to your computer and use it in GitHub Desktop.
FROM ubuntu:18.04
# To make it easier for build and release pipelines to run apt-get,
# configure apt to not require confirmation (assume the -y argument by default)
ENV DEBIAN_FRONTEND=noninteractive
RUN echo "APT::Get::Assume-Yes \"true\";" > /etc/apt/apt.conf.d/90assumeyes
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
jq \
git \
iputils-ping \
libcurl4 \
libicu60 \
libunwind8 \
netcat
WORKDIR /azp
COPY ./start.sh .
RUN chmod +x start.sh
CMD ["./start.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment