feat / AEB-61 add dockeringore files

This commit is contained in:
Timofey
2025-10-04 13:19:12 +03:00
parent d3c270ab9d
commit a822ea587c
8 changed files with 591 additions and 566 deletions

12
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:23-alpine
WORKDIR /app
COPY --chmod=755 <<EOT ./entrypoint.sh
#!/usr/bin/env sh
set -e
npm run build &&
npm start
EOT
COPY . ./
RUN npm install
EXPOSE 3000
ENTRYPOINT ["./entrypoint.sh"]