mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
39 lines
808 B
Docker
39 lines
808 B
Docker
#
|
|
# Fyipe Docs Dockerfile
|
|
#
|
|
|
|
# Pull base image nodejs image.
|
|
FROM node:16
|
|
|
|
#SET ENV Variables
|
|
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
|
|
|
# Install nodemon
|
|
RUN npm install nodemon -g
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy package.json files
|
|
COPY ./package.json /usr/src/app/package.json
|
|
COPY ./package-lock.json /usr/src/app/package-lock.json
|
|
|
|
|
|
# Install app dependencies
|
|
RUN npm ci
|
|
|
|
# Create .cache folder with necessary permissions for React-based apps
|
|
# https://stackoverflow.com/questions/67087735/eacces-permission-denied-mkdir-usr-app-node-modules-cache-how-can-i-creat
|
|
RUN mkdir -p node_modules/.cache && chmod -R 777 node_modules/.cache
|
|
|
|
# Expose ports.
|
|
# - 3006: HTTP Fyipe Status Page
|
|
EXPOSE 3006
|
|
|
|
# Expose ports.
|
|
# - 3007: HTTPS Fyipe Status Page
|
|
EXPOSE 3007
|
|
|
|
#Run the app
|
|
CMD [ "npm", "run", "dev" ]
|