Update Dockerfile, main.yml, and index.ts for bot configuration and activity status

This commit is contained in:
암냥 2025-12-11 01:19:09 +09:00
commit 4cb7666826
No known key found for this signature in database
4 changed files with 35 additions and 6 deletions

View file

@ -1,8 +1,6 @@
FROM oven/bun:alpine as build
# Set timezone to KST
ENV TZ=Asia/Seoul
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apk add --no-cache tzdata git
WORKDIR /app
@ -20,6 +18,8 @@ RUN bun run build
FROM alpine:latest as runtime
RUN apk add --no-cache tzdata
ENV TZ=Asia/Seoul
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone