diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-17 23:30:49 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-17 23:30:49 +1000 |
commit | 24f650fdc19febf60c3002c125da897199f4e8a4 (patch) | |
tree | e9bbf4959ed019f09fb38ba76440cd0153c61a59 /docker/build-vicmap.Dockerfile | |
parent | d6520f47b72b9a4dcc18a100bac055e9370da78f (diff) |
refactor pipeline stages
Diffstat (limited to 'docker/build-vicmap.Dockerfile')
-rw-r--r-- | docker/build-vicmap.Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docker/build-vicmap.Dockerfile b/docker/build-vicmap.Dockerfile new file mode 100644 index 0000000..95b28f1 --- /dev/null +++ b/docker/build-vicmap.Dockerfile @@ -0,0 +1,7 @@ +FROM debian:buster-slim +RUN apt-get -y update && apt-get -y install curl gnupg make +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 + |