/[sudobot]/trunk/Dockerfile
ViewVC logotype

Contents of /trunk/Dockerfile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 357 - (show annotations)
Mon Jul 29 17:29:45 2024 UTC (8 months ago) by rakin
File size: 181 byte(s)
build(docker): fix dockerfile
1 FROM node:18-buster
2
3 WORKDIR /app
4
5 COPY package.json .
6 COPY tsconfig.json .
7 COPY src .
8
9 RUN npm install -D
10 RUN npm run build
11
12 COPY . .
13
14 EXPOSE 4000
15 CMD ["npm", "run", "start:node"]

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26