diff options
Diffstat (limited to 'apps/mi-processor/Dockerfile')
-rw-r--r-- | apps/mi-processor/Dockerfile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/mi-processor/Dockerfile b/apps/mi-processor/Dockerfile new file mode 100644 index 0000000..dbb042d --- /dev/null +++ b/apps/mi-processor/Dockerfile @@ -0,0 +1,16 @@ +FROM node:8 + +WORKDIR /opt + +COPY package*.json ./ + +RUN apt update && apt -y full-upgrade +RUN apt install -y postgresql-client +RUN npm install +# If you are building your code for production +# RUN npm ci --only=production + +COPY . . + +EXPOSE 8080 +CMD [ "npm", "start" ] |