# Copyright (C) The Arvados Authors. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 FROM ubuntu:18.04 RUN apt-get update && apt-get install -y gnupg2 ca-certificates RUN echo "deb http://apt.arvados.org/bionic bionic main" > /etc/apt/sources.list.d/apt.arvados.org.list RUN echo "deb http://apt.arvados.org/bionic bionic-dev main" >> /etc/apt/sources.list.d/apt.arvados.org.list ADD 1078ECD7.asc /tmp/ RUN cat /tmp/1078ECD7.asc | apt-key add - RUN apt-get update COPY bootstrap.sh /usr/local/bin/bootstrap.sh ENTRYPOINT []