This commit is contained in:
Artyom Ashirov
2024-11-14 16:44:00 +03:00
parent 45ad916f61
commit 3872ddbb68
6 changed files with 34 additions and 6 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:22
WORKDIR /app
COPY package*.json /app/
COPY src/ /app/src/
COPY db/shop.db /app/shop.db
RUN npm install
CMD ["node", "src/index.js"]