Skip to content

Commit 2dcd919

Browse files
committed
[upgrade] switch to fork with semver
1 parent 7519a01 commit 2dcd919

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

arch.dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
ARG APP_UID=1000
22
ARG APP_GID=1000
3+
ARG BUILD_ROOT=/git/fork-py-kms
34

45
# :: Util
56
FROM 11notes/util AS util
67

78
# :: Build / py-kms
89
FROM alpine/git AS build
910
ARG APP_VERSION
10-
ARG BUILD_ROOT=/git/fork-py-kms
11+
ARG BUILD_ROOT
1112
RUN set -ex; \
1213
git clone https://github.com/11notes/fork-py-kms -b next; \
1314
cd ${BUILD_ROOT}; \
@@ -27,6 +28,7 @@ ARG APP_GID=1000
2728
ARG APP_UID
2829
ARG APP_GID
2930
ARG APP_NO_CACHE
31+
ARG BUILD_ROOT
3032

3133
# :: python image
3234
ARG PIP_ROOT_USER_ACTION=ignore

compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "kms"
22
services:
33
app:
4-
image: "11notes/kms:465f4d1"
4+
image: "11notes/kms:1.0.0"
55
environment:
66
TZ: "Europe/Zurich"
77
volumes:
@@ -11,7 +11,7 @@ services:
1111
restart: "always"
1212

1313
gui:
14-
image: "11notes/kms-gui:465f4d1"
14+
image: "11notes/kms-gui:1.0.0"
1515
depends_on:
1616
app:
1717
condition: "service_healthy"

0 commit comments

Comments
 (0)