blob: 6a04a6cbdee63596eda993960a45597691450023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# SPDX-FileCopyrightText: © 2020 Grégoire Duchêne <gduchene@awhk.org>
# SPDX-License-Identifier: ISC
FROM golang:1.16
WORKDIR /root
COPY . ./
RUN CGO_ENABLED=0 go build ./cmd/fwdsms
FROM scratch
COPY --from=0 /root/fwdsms /usr/bin/fwdsms
EXPOSE 8080
ENTRYPOINT ["/usr/bin/fwdsms"]
|