oneuptime/helm-chart/Dockerfile

20 lines
308 B
Docker
Raw Normal View History

2020-03-22 11:39:12 +00:00
# Pull base image nodejs image.
2020-10-28 12:21:59 +00:00
FROM node:15
2020-03-22 11:39:12 +00:00
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json /usr/src/app/
RUN npm ci
# Bundle app source
COPY . /usr/src/app
# Expose ports.
# - 1445: Fyipe Helm Chart Server
EXPOSE 3423
#Run the app
CMD [ "npm", "start" ]