Skip to content

Commit acb5f3c

Browse files
committed
fix: 修复 Dockerfile 中的标签格式,确保每个标签单独声明
1 parent cf9a03a commit acb5f3c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Dockerfile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ FROM python:3.12.9-alpine3.21
22

33
ARG VERSION=1.0.0
44

5-
LABEL maintainer="AptS-1547 <apts-1547@esaps.net>" \
6-
version="${VERSION}" \
7-
description="A simple webhook server for GitHub to send events to a OneBot (CQHTTP) bot." \
8-
homepage="https://onebot-github-webhook.docs.ecaps.top/" \
9-
repository="https://github.com/AptS-1547/onebot-github-webhook" \
10-
license="Apache-2.0" \
11-
license_url="http://www.apache.org/licenses/LICENSE-2.0"
12-
13-
LABEL org.opencontainers.image.source="https://github.com/AptS-1547/onebot-github-webhook" \
14-
org.opencontainers.image.description="A simple webhook server for GitHub to send events to a OneBot (CQHTTP) bot." \
15-
org.opencontainers.image.licenses="Apache-2.0"
5+
LABEL maintainer="AptS-1547 <apts-1547@esaps.net>"
6+
LABEL version="${VERSION}"
7+
LABEL description="A simple webhook server for GitHub to send events to a OneBot (CQHTTP) bot."
8+
LABEL homepage="https://onebot-github-webhook.docs.ecaps.top/"
9+
LABEL repository="https://github.com/AptS-1547/onebot-github-webhook"
10+
LABEL license="Apache-2.0"
11+
LABEL license_url="http://www.apache.org/licenses/LICENSE-2.0"
12+
13+
LABEL org.opencontainers.image.source="https://github.com/AptS-1547/onebot-github-webhook"
14+
LABEL org.opencontainers.image.description="A simple webhook server for GitHub to send events to a OneBot (CQHTTP) bot."
15+
LABEL org.opencontainers.image.licenses="Apache-2.0"
1616

1717
WORKDIR /app
1818

0 commit comments

Comments
 (0)