diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-16 07:32:09 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-16 07:32:09 +1000 |
commit | ffd83dfd271a636ea85a1c8328c6eb967f76ff81 (patch) | |
tree | 97c5ca07de433e671698a8138aa44bc0e5c44d4e /docker/build.Dockerfile | |
parent | 98a5908c625ba2b32fcefa0113ac3e02c3f63a97 (diff) |
docker images for ci
Diffstat (limited to 'docker/build.Dockerfile')
-rw-r--r-- | docker/build.Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docker/build.Dockerfile b/docker/build.Dockerfile new file mode 100644 index 0000000..69c8fe3 --- /dev/null +++ b/docker/build.Dockerfile @@ -0,0 +1,7 @@ +FROM debian:buster-slim +RUN apt-get -y update && apt-get -y install curl gnupg make +RUN -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 + |