This commit is contained in:
Noah Spannbauer
2023-02-15 12:46:50 -06:00
parent c2d8bd1838
commit 0d5eb3e801
99 changed files with 20124 additions and 213 deletions

8
graphql/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:16.19.0-alpine3.17
WORKDIR /user/src/app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 8080
CMD ["node", "dist/main"]