Skip to content
Snippets Groups Projects
Commit 816a2bbb authored by Armin Co's avatar Armin Co
Browse files

Added Dockerfile

Dockerfile for image in which the app is build.
parent 50a14079
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment