blob: 5d4d016b361b416f57389d68d6c5518322d731f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
ARG DISTRO=xenial
FROM ubuntu:$DISTRO
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends ca-certificates git
RUN git config --global --add safe.directory /src
|