Setup Hasura locally

This commit is contained in:
Charles Bochet
2023-04-12 15:08:27 +02:00
parent c63b7df25d
commit 93fb5896b8
10 changed files with 83 additions and 581 deletions

View File

@ -0,0 +1,12 @@
FROM node:18-alpine as server
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh && \
apk add libc6-compat
WORKDIR /app/server
COPY ../../server .
RUN npm install
CMD ["npm", "run", "start"]