added dockerfile

This commit is contained in:
Smigz 2024-12-26 07:27:38 -05:00
parent 15a77883f4
commit eb3068af96
4 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,13 @@
FROM node:23-alpine
COPY . /app
WORKDIR /app
RUN npm install .
EXPOSE 3000
CMD ["node", "src/app.js"]