backend without proxy

This commit is contained in:
2025-04-25 22:25:41 +03:00
parent c8c347b342
commit ae8cd6e1c1
17 changed files with 2010 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:22-bullseye
ARG APP_PORT
ENV APP_PORT $APP_PORT
COPY . .
RUN npm i
EXPOSE $APP_PORT
ENTRYPOINT ["node", "./src/index.js"]