mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
* K8S: dont send OPTIONS pings * fix missing ref * k8s pre-stop hook added * k8s pre-stop hook changes * chmod +x utility * more k8s pre-stop changes * pre stop * fix healthcheck * k8s pre-stop working * add readiness probe * fix bug in pre-stop * logging * revamp k8s pre-stop a bit * initial support for cognigy bot * more cognigy changes * switch to use transcribe for cognigy * #54 include callInfo in dialogflow event payload
10 lines
166 B
Docker
10 lines
166 B
Docker
FROM node:17.0.1-slim
|
|
WORKDIR /opt/app/
|
|
COPY package.json ./
|
|
RUN npm install
|
|
RUN npm prune
|
|
COPY . /opt/app
|
|
ARG NODE_ENV
|
|
ENV NODE_ENV $NODE_ENV
|
|
|
|
CMD [ "npm", "start" ] |