chore(core): Added bare TCP access
All checks were successful
Docker Build and Push for Main Branch / docker (push) Successful in 11m31s

This commit is contained in:
l-nmch
2026-05-11 15:50:11 +02:00
parent 818651444e
commit f45a108808
4 changed files with 222 additions and 6 deletions

View File

@@ -1,11 +1,9 @@
FROM nginx:stable-alpine
FROM node:18-alpine
WORKDIR /usr/share/nginx/html
WORKDIR /usr/src/app
COPY index.html ./
COPY src ./src
COPY assets ./assets
COPY . .
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
CMD ["node", "server.js"]