Docker file ig

This commit is contained in:
Bingus_Violet 2024-02-03 10:26:09 -06:00
parent c17725e9b3
commit b5af5a2be1

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM node:20
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "node", "index.js" ]