# Copyright (c) 2021 The University of British Columbia. # All rights reserved. # # This file is distributed under the terms in the attached LICENSE file. FROM ubuntu:20.04 MAINTAINER Reto Achermann COPY install.sh /install.sh COPY entrypoint.sh /entrypoint.sh RUN /install.sh && rm -rf /install.sh ENTRYPOINT ["/entrypoint.sh"]