diff options
Diffstat (limited to 'docker/prepare.Dockerfile')
-rw-r--r-- | docker/prepare.Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/prepare.Dockerfile b/docker/prepare.Dockerfile index 662df44..3d97ff4 100644 --- a/docker/prepare.Dockerfile +++ b/docker/prepare.Dockerfile @@ -1,7 +1,7 @@ FROM debian:buster-slim RUN apt-get -y update && apt-get -y install curl gnupg make wget unzip gdal-bin -RUN -fsSL https://deb.nodesource.com/setup_12.x | bash - -RUN curl -s https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - +RUN curl -fsSL https://deb.nodesource.com/setup_12.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 |