oneuptime/application-scanner/Dockerfile
2021-06-25 21:47:10 +01:00

28 lines
394 B
Docker
Executable File

#
# Fyipe-backend Dockerfile
#
# Pull base image nodejs image.
FROM node:16
#SET ENV Variables
ENV PRODUCTION=true
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json /usr/src/app/
RUN npm ci --only=production
# Bundle app source
COPY . /usr/src/app
# Expose ports.
# - 3005: Application Scanner
EXPOSE 3005
#Run the app
CMD [ "npm", "start"]