We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14fd52c commit 6bd0fcdCopy full SHA for 6bd0fcd
.dockerignore
@@ -1,5 +1,4 @@
1
.git*
2
*.md
3
-LICENSE
4
maintain/
5
project*
arch.dockerfile
@@ -1,11 +1,9 @@
# :: Util
- FROM alpine AS util
+ FROM alpine/git AS util
ARG NO_CACHE
6
RUN set -ex; \
7
- apk --no-cache --update add \
8
- git; \
9
git clone https://github.com/11notes/docker-util.git;
10
11
# :: Build / redis
@@ -48,7 +46,7 @@
48
46
ENV PORT=8080
49
47
50
# :: multi-stage
51
- COPY --from=util /docker-util/src/ /usr/local/bin
+ COPY --from=util /git/docker-util/src/ /usr/local/bin
52
COPY --from=build /opt/py-kms-gui/ /opt/py-kms-gui
53
COPY ./LICENSE /opt/py-kms-gui
54
0 commit comments