Olaf Bohlen
2023-02-09 f6eb66dc4a934b5f84522727518058b361b02a36
1
2
3
4
5
6
7
8
9
10
11
FROM registry.access.redhat.com/ubi8/nodejs-12
 
# Install dependencies
COPY package.json package-lock.json /app/
WORKDIR /app
RUN npm ci --production
 
# Copy app
COPY . /app
 
ENTRYPOINT [ "node", "index" ]