mirror of
https://github.com/absmach/magistrala.git
synced 2026-06-23 04:10:28 +00:00
071d23a5f0
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
9 lines
223 B
Docker
9 lines
223 B
Docker
# Copyright (c) Abstract Machines
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM scratch
|
|
ARG SVC
|
|
COPY $SVC /exe
|
|
COPY --from=alpine:3.22 /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
ENTRYPOINT ["/exe"]
|