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