feat: public donut-sync to docker hub

This commit is contained in:
zhom
2026-02-01 22:56:19 +04:00
parent c6c860c676
commit b54a3e7a13
2 changed files with 26 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.env
.env.*
!.env.example
coverage
.nyc_output
.temp
.tmp
.git
*.log
src
test
tsconfig.json
tsconfig.build.json
nest-cli.json
+12
View File
@@ -0,0 +1,12 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json .
COPY dist/ dist/
COPY node_modules/ node_modules/
ENV NODE_ENV=production
EXPOSE 12342
CMD ["node", "dist/main"]