Node_Chat_Server / Dockerfile
Anuj-Panthri's picture
basic server
d60b4e5
raw
history blame
95 Bytes
FROM node:18-alpine
COPY . /app
WORKDIR /app
EXPOSE 8080
RUN npm install;
CMD node index.js