File size: 173 Bytes
2f06cb8
 
 
 
 
 
 
 
 
 
3750b15
635b3d2
0515a8e
 
3750b15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM node:latest

WORKDIR /app

COPY . .

RUN npm install -g pnpm && pnpm install

EXPOSE 3000

# RUN chown -R 1000:1000 /app

RUN pnpm build

CMD ["node", "build/index.js"]