mirror of
https://github.com/MrSedan/neuro-reply-website.git
synced 2026-01-15 13:09:43 +03:00
9 lines
174 B
Docker
9 lines
174 B
Docker
FROM oven/bun:latest
|
|
WORKDIR /app
|
|
COPY package.json bun.lockb ./
|
|
RUN bun install --frozen-lockfile
|
|
COPY . .
|
|
RUN bun run build
|
|
EXPOSE 3000
|
|
CMD [ "bun", "run", "start:prod" ]
|