6 lines
128 B
Docker
6 lines
128 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
|
|
hwloc \
|
|
&& rm -rf /var/lib/apt/lists/*
|