12 lines
252 B
Docker
12 lines
252 B
Docker
# use the official Bun image
|
|
# see all versions at https://hub.docker.com/r/oven/bun/tags
|
|
FROM oven/bun:1
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json bun.lock ./
|
|
RUN bun install --frozen-lockfile
|
|
|
|
COPY . .
|
|
|
|
USER bun
|
|
ENTRYPOINT [ "bun", "run", "index.ts" ] |