diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..e728db06154cca6868c7da4bfdee92fafe15d27e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM alpine:edge + +LABEL maintainer="Armin Co <armin.co@hs-bochum.de" + +# copy mumble-web repository into docker image +COPY ./mumble-web /home/node + +# install git and npm +RUN apk add --no-cache git npm + +# "install" mumble-web +RUN cd /home/node && \ + npm install && \ + npm run build && \ + npm audit fix && \ + npm audit