chore: add Dockerfile
This commit is contained in:
parent
3b27e15421
commit
618c0bbc98
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
FROM node:24-alpine
|
||||
|
||||
RUN corepack enable pnpm && corepack install -g pnpm@latest
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY pnpm-lock.yaml package.json ./
|
||||
|
||||
RUN pnpm install
|
||||
COPY . .
|
||||
RUN pnpm build
|
||||
|
||||
EXPOSE 8085
|
||||
|
||||
CMD ["pnpm", "start", "--port", "8085"]
|
Loading…
x
Reference in New Issue
Block a user