File size: 173 Bytes
4e3fbe0
 
 
 
f9e6802
 
f492d31
 
1
2
3
4
5
6
7
8
9
FROM node:20

COPY . .
RUN npm i --omit=dev --no-package-lock
USER node

# Command to start the application and keep it running
CMD ["sh", "-c", "node src/index.js & wait"]