9 lines
298 B
Docker
9 lines
298 B
Docker
# ------------------------------------------------------------------------
|
|
from mcluseau/golang-builder:1.19.4 as build
|
|
|
|
# ------------------------------------------------------------------------
|
|
from alpine:3.17
|
|
volume /srv/dkl-store
|
|
entrypoint ["/bin/dkl-store"]
|
|
copy --from=build /go/bin/ /bin/
|