blob: 5d4d016b361b416f57389d68d6c5518322d731f1 (
plain) (
tree)
|
|
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
|