Files
euba-itckar-bot/Dockerfile
2026-09-23 19:02:26 +02:00

11 lines
224 B
Docker

# use the official Bun image
# see all versions at https://hub.docker.com/r/oven/bun/tags
FROM oven/bun:1 AS base
WORKDIR /usr/src/app
COPY . .
RUN bun install
# run the app
USER bun
ENTRYPOINT [ "bun", "run", "index.js" ]