Created
April 19, 2020 08:00
-
-
Save michalpenka/7b0df9230adf453bdd05709333ff5c15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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