We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0f82c commit 50e8f7dCopy full SHA for 50e8f7d
.github/workflows/docker.build.yml
@@ -29,7 +29,7 @@ jobs:
29
uses: docker/setup-buildx-action@v3.3.0
30
-
31
name: Cache Docker layers
32
- uses: actions/cache@v4.0.2
+ uses: actions/cache@v4
33
with:
34
path: /tmp/.buildx-cache
35
key: ${{ runner.os }}-buildx-${{ github.sha }}
Dockerfile
@@ -1,7 +1,11 @@
1
-FROM wikibase/wdqs:0.3.135-wmde.13
+ARG VERSION=0.3.135-wmde.13
2
+FROM wikibase/wdqs:$VERSION
3
+ARG VERSION
4
5
LABEL org.opencontainers.image.source="https://github.com/wbstack/queryservice"
6
7
+ENV USER_AGENT="Wikibase.Cloud Query Service ($VERSION); https://github.com/wbstack/queryservice"
8
+
9
COPY ./entrypoint.sh /entrypoint.sh
10
RUN chmod +x /entrypoint.sh
11
0 commit comments