mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-04-17 21:38:27 +00:00
8 lines
196 B
Docker
8 lines
196 B
Docker
FROM ubuntu:bionic as base
|
|
WORKDIR /tmp
|
|
COPY .tests/install/ubuntu/setup.sh /tmp/init.sh
|
|
COPY ./install.sh /tmp/install.sh
|
|
RUN bash /tmp/init.sh
|
|
|
|
# FROM base as install
|
|
# RUN bash /tmp/install.sh
|