mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 07:42:10 +00:00
20 lines
313 B
Docker
20 lines
313 B
Docker
|
# Pull base image nodejs image.
|
||
|
FROM node:12.16.1
|
||
|
|
||
|
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" ]
|