works with npm run start/dev with a local redis, but not a docker redis

This commit is contained in:
AtHeartEngineer
2023-07-14 15:19:09 -04:00
parent cfe8986488
commit b91f5f72d6
9 changed files with 462 additions and 284 deletions

14
dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3001
EXPOSE 3002
CMD [ "npm", "start" ]