10 lines
331 B
Docker
10 lines
331 B
Docker
# syntax=docker/dockerfile:1.6.0
|
|
# ------------------------------------------------------------------------
|
|
from mcluseau/golang-builder:1.23.2 as build
|
|
|
|
# ------------------------------------------------------------------------
|
|
from alpine:3.20
|
|
volume /srv/dkl-store
|
|
entrypoint ["/bin/dkl-store"]
|
|
copy --from=build /go/bin/ /bin/
|