Added dev server options

Implemented basic structure for mock service
This commit is contained in:
2023-06-16 14:49:56 +02:00
parent 3c79bddde3
commit c0fcd53d35
12 changed files with 254 additions and 15 deletions

View File

@@ -18,3 +18,13 @@ COPY ./nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
EXPOSE 443
FROM node:latest as dev
WORKDIR /app
COPY package*.json ./
RUN npm install
ENV HOST=0.0.0.0
COPY . .
EXPOSE 8080
CMD ["npm", "run", "dev"]