Should now run frontend tests on gitlab

This commit is contained in:
Eliot Berriot 2018-01-09 20:47:03 +01:00
commit cb2238c576
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
2 changed files with 35 additions and 14 deletions

View file

@ -1,10 +1,10 @@
FROM node:6
FROM node:9
EXPOSE 8080
WORKDIR /app/
ADD package.json .
RUN npm install --only=production
RUN npm install --only=dev
RUN yarn install --only=production
RUN yarn install --only=dev
VOLUME ["/app/node_modules"]
COPY . .