Olaf Bohlen
2023-02-09 8148e6c41f44846aa6849c2e57fe689a5de4e174
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" ]