aos/tools/docker/Dockerfile
Daniel Schwyn 6d444bf552 Main handout
Signed-off-by: Daniel Schwyn <daniel.schwyn@inf.ethz.ch>
2022-03-03 14:57:51 +01:00

15 lines
353 B
Docker

# 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 <achreto@cs.ubc.ca>
COPY install.sh /install.sh
COPY entrypoint.sh /entrypoint.sh
RUN /install.sh && rm -rf /install.sh
ENTRYPOINT ["/entrypoint.sh"]