mirror of
https://github.com/jambonz/sbc-inbound.git
synced 2025-12-19 04:37:43 +00:00
* health check tests mysql and redis connectivity * health check tests mysql and redis connectivity * minor
10 lines
172 B
Docker
10 lines
172 B
Docker
FROM node:slim
|
|
WORKDIR /opt/app/
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
RUN npm prune
|
|
COPY . /opt/app
|
|
ARG NODE_ENV
|
|
ENV NODE_ENV $NODE_ENV
|
|
|
|
CMD [ "npm", "start" ] |