2020-12-28 02:05:58 +01:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get upgrade -y && apt-get install -y curl jq rsync
|
|
|
|
|
|
|
|
RUN curl -sL `curl -s https://api.github.com/repos/roswell/roswell/releases/latest \
|
|
|
|
| jq -r '.assets | .[] | select(.name|test("deb$")) | .browser_download_url'` \
|
|
|
|
--output roswell.deb \
|
|
|
|
&& apt install -y ./roswell.deb
|
|
|
|
|
2020-12-28 09:49:10 +01:00
|
|
|
RUN ros install coleslaw-org/coleslaw
|
2020-12-28 02:05:58 +01:00
|
|
|
ENV PATH="/root/.evm/bin:/root/.roswell/bin:$PATH"
|
2020-12-28 10:01:49 +01:00
|
|
|
RUN coleslaw --help 2>&1
|