Use lighter vue-cli instead of clunky manual webpack config

This commit is contained in:
Eliot Berriot 2018-08-11 16:21:14 +02:00
commit e3040de444
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
38 changed files with 3336 additions and 4119 deletions

View file

@ -5,9 +5,9 @@ RUN curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/downloa
EXPOSE 8080
WORKDIR /app/
ADD package.json .
ADD package.json yarn.lock ./
RUN yarn install
COPY . .
CMD ["npm", "run", "dev"]
CMD ["yarn", "serve"]