improve prompting + add dockerfile for ws

This commit is contained in:
Ishaan Dey
2024-05-03 12:56:44 -07:00
parent 2bfaf428d9
commit 6e28d283cd
4 changed files with 40 additions and 12 deletions

15
backend/server/dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM node:20
WORKDIR /code
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD [ "node", "dist/index.js" ]