add dockerfile

This commit is contained in:
tezlm 2024-07-28 06:29:58 -07:00
parent a9ab31ad2f
commit 8ae6ed8aab
Signed by: tezlm
GPG key ID: 649733FCD94AFBBA

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM node:22-alpine
WORKDIR /app
COPY . /app
RUN npm install
CMD npm run start
EXPOSE 2893