separated client
Some checks are pending
clarama/eo-services/pipeline/head Build queued...

This commit is contained in:
2022-10-18 00:18:09 -05:00
parent 4970be4c05
commit d7cebcb7f5
31 changed files with 3524 additions and 9129 deletions

View File

@@ -1,4 +1,21 @@
# syntax=docker/dockerfile:1
FROM baseImage
LABEL site.mortons.author=""
LABEL site.mortons.version="1.0"
FROM node:lts-alpine
ENV NODE_ENV=production
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
# continuous integration for production
RUN npm ci --only=production
# Bundle app source
COPY . .
EXPOSE 9000
CMD [ "npm", "start" ]