File size: 286 Bytes
d463281
 
301f307
d463281
 
 
 
 
 
 
 
 
251c3c9
d463281
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM node:19-slim

RUN apt-get update && \
    apt-get install -y \
      bash \
      git git-lfs \
      wget curl procps \
      htop vim nano && \
    rm -rf /var/lib/apt/lists/*

WORKDIR /app
COPY --link --chown=1000 ./ /app
RUN  npm install
RUN  npm ci 

CMD ["node", "index.mjs"]