Version 1.0 working Entity creation and string generator
This commit is contained in:
16
Dockerfile
Normal file
16
Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user