Copy everything over in the base image

This commit is contained in:
Matt Rider 2019-01-05 14:25:31 -02:00
parent 9f8a292c7e
commit 124f8be370

View File

@ -11,12 +11,7 @@ WORKDIR $WORKDIR
# See: https://github.com/nodejs/docker-node/pull/367#issuecomment-430807898
RUN apk --no-cache add git
COPY locales ./locales
COPY styleguide ./styleguide
COPY server ./server
COPY components ./components
COPY store ./store
COPY package.json yarn.lock .eslintrc.js .eslintignore nuxt.config.js ./
COPY . .
CMD ["yarn", "run", "start"]
FROM base as build-and-test