mirror of
https://github.com/Discreetly/server.git
synced 2026-01-09 12:37:58 -05:00
works with npm run start/dev with a local redis, but not a docker redis
This commit is contained in:
14
dockerfile
Normal file
14
dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user