1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-05 05:40:06 +00:00

Revert "chore: added docker containers"

This reverts commit d7cbd315a6.
This commit is contained in:
Saad Jutt
2021-11-09 17:42:55 +05:00
parent d7cbd315a6
commit 9e2123cfe9
10 changed files with 0 additions and 151 deletions

View File

@@ -1,10 +0,0 @@
FROM node:lts-alpine
ENV NODE_ENV=production
WORKDIR /usr/src/app
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
RUN npm install --silent && mv node_modules ../
COPY . .
EXPOSE 5000
RUN chown -R node /usr/src/app
USER node
CMD ["npm", "start"]