mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
15 lines
441 B
Docker
15 lines
441 B
Docker
FROM alpine:latest
|
|
|
|
MAINTAINER sunxyw <me@sunxyw.xyz>
|
|
|
|
RUN apk add --no-cache curl
|
|
RUN mkdir -p /bot && \
|
|
curl -fsSL https://github.com/onebot-walle/walle-q/releases/latest/download/walle-q-i686-linux-musl.tar.gz -O && \
|
|
tar -zxvf walle-q-i686-linux-musl.tar.gz -C /bot && \
|
|
rm -rf walle-q-i686-linux-musl.tar.gz && \
|
|
chmod +x /bot/walle-q-i686-linux-musl
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
|
|
ENTRYPOINT [ "/bot/walle-q-i686-linux-musl" ]
|