diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-12-21 14:36:40 +1100 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-12-21 14:36:40 +1100 |
commit | 583be3faac204714f747cbe9415b0b907bfbbd85 (patch) | |
tree | b64d01dd148cbce0bc3b088ac8fffcc4b05e618d /docker/conflate.Dockerfile | |
parent | 258502fe8125aed8dd70ff8f434edfa4740b9a22 (diff) |
install b2
Diffstat (limited to 'docker/conflate.Dockerfile')
-rw-r--r-- | docker/conflate.Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/conflate.Dockerfile b/docker/conflate.Dockerfile index 6d81c4c..4f7a854 100644 --- a/docker/conflate.Dockerfile +++ b/docker/conflate.Dockerfile @@ -1,7 +1,8 @@ FROM debian:buster-slim -RUN apt-get -y update && apt-get -y install curl gnupg make +RUN apt-get -y update && apt-get -y install curl wget gnupg make RUN curl -fsSL https://deb.nodesource.com/setup_15.x | bash - RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list RUN apt-get -y update && apt-get -y install nodejs yarn +RUN wget -qO /usr/bin/b2 'https://github.com/Backblaze/B2_Command_Line_Tool/releases/latest/download/b2-linux' && chmod +x /usr/bin/b2 |