Update Hasura to latest version

This commit is contained in:
Hammad Jutt
2020-04-18 00:42:48 -06:00
parent 4c3ff4934f
commit 1c5955ce32
2 changed files with 4 additions and 4 deletions

View File

@@ -4,10 +4,10 @@ WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
RUN yarn install
COPY . .
RUN npm run build
RUN yarn build
CMD [ "npm", "start" ]
CMD [ "yarn", "start" ]