diff --git a/Dockerfile b/Dockerfile index bf8df4f..61d075b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,5 +10,6 @@ FROM alpine:latest WORKDIR /src COPY --from=build /bot bot COPY --from=build /src/countries.json countries.json +COPY --from=build /src/user_list.json user_list.json CMD [ "/src/bot" ] diff --git a/handlers.go b/handlers.go index 6688bda..3ed1d17 100644 --- a/handlers.go +++ b/handlers.go @@ -110,7 +110,7 @@ func CommandEat(c tele.Context) error { return nil } - method := []string{"炒", "蒸", "煮"} + method := []string{"炒", "蒸", "煮", "红烧", "爆炒", "烤", "炸", "煎", "炖", "焖", "炖", "卤"} // 获取时间段 hour := time.Now().Hour()