Tabellepflege abgeschlossen, Entwicklung eingebunden, Basiswerte und CSS-Fixes

This commit is contained in:
Hilmer, Carsten
2016-09-13 16:28:58 +02:00
parent 71867b9087
commit fa55d4fee9
94 changed files with 12014 additions and 62 deletions

View File

@@ -0,0 +1,15 @@
#FROM rafakato/alpine-graphicsmagick
RUN apk add --update --no-cache \
build-base \
python \
git \
nodejs \
curl \
ca-certificates
WORKDIR /src
ADD . ./
RUN adduser -S node
RUN chown -R node /src
USER node
RUN npm install && npm install bower && ./node_modules/bower/bin/bower install
CMD ["npm", "test"]