From 301c45d848f7ff3ddc99b5c6d8e348b97c2b3eec Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 25 Mar 2025 23:02:18 -0400 Subject: Docker implemented --- bot/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'bot/Dockerfile') diff --git a/bot/Dockerfile b/bot/Dockerfile index b5f30cd..c21fd47 100644 --- a/bot/Dockerfile +++ b/bot/Dockerfile @@ -2,15 +2,12 @@ FROM oven/bun:latest WORKDIR /bot -#RUN apt-get update && apt-get install -y build-essential libtool autoconf automake python3 - COPY package.json ./ COPY bun.lockb ./ -RUN bun run build +RUN bun install COPY . . -ENTRYPOINT ["node", "bot_discord.js"] - +ENTRYPOINT ["bun", "start"] -- cgit v1.2.3