Update Dockerfile, main.yml, and index.ts for bot configuration and activity status
This commit is contained in:
parent
e176b1c094
commit
4cb7666826
4 changed files with 35 additions and 6 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue