diff options
Diffstat (limited to 'docker/candidate.Dockerfile')
-rw-r--r-- | docker/candidate.Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/candidate.Dockerfile b/docker/candidate.Dockerfile index 06421f7..db091ba 100644 --- a/docker/candidate.Dockerfile +++ b/docker/candidate.Dockerfile @@ -1,7 +1,8 @@ FROM debian:buster-slim -RUN apt-get -y update && apt-get -y install curl gnupg make git +RUN apt-get -y update && apt-get -y install curl wget gnupg make git 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 python3 RUN git clone https://github.com/grigory-rechistov/osm-bulk-upload.git upload && sed -i s/api\.openstreetmap\.org/master.apis.dev.openstreetmap.org/g upload/*.py +RUN wget -qO /usr/bin/b2 'https://github.com/Backblaze/B2_Command_Line_Tool/releases/latest/download/b2-linux' && chmod +x /usr/bin/b2 |