File size: 239 Bytes
4b05ee6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM node:20.4

WORKDIR /app
COPY package*.json ./
RUN npm install --no-audit --fund false

COPY . .

RUN chown -R node:node lib/bin/* && \
    chmod u+x lib/bin/* && \
    chmod -R 777 /app

USER node

RUN ls -la

CMD ["node", "clewd.js"]