Version 1.0 working Entity creation and string generator

This commit is contained in:
2024-05-28 07:44:21 +02:00
parent 46eee5d726
commit 13e15a24b7
50 changed files with 13956 additions and 128 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:18.13.0-alpine AS build
WORKDIR /app
RUN npm cache clean --force
COPY . .
RUN npm install
RUN npm run build
FROM nginx:mainline-alpine AS ngi
COPY --from=build /app/dist/mqtt_creator /usr/share/nginx
COPY /nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80