mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
9 lines
235 B
Docker
9 lines
235 B
Docker
FROM ubuntu:bionic as base
|
|
WORKDIR /tmp
|
|
COPY ./install.sh /tmp/install.sh
|
|
RUN apt-get update && apt-get install -y apt-utils \
|
|
&& apt-get install -y curl git gnupg build-essential
|
|
|
|
# FROM base as install
|
|
# RUN bash /tmp/install.sh
|