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

10 lines
215 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
RUN bun install
# run the app
USER bun
ENTRYPOINT [ "bun", "run", "index.js" ]