e225a57f97
- Removing channels. Going back to a wsgi deployment - Removed server projector code - Autoupdate throttling is now in the client - New communication stack in the client - Adopted all deployment methods: Docker stack and docker compose (prod and dev) - Added autoupdate service as submodule
12 lines
113 B
Docker
12 lines
113 B
Docker
FROM node:13
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
RUN npm install
|
|
RUN npm run postinstall
|
|
|
|
COPY . .
|
|
|
|
CMD npm start
|