aboutsummaryrefslogtreecommitdiff
path: root/docker/Dockerfile
blob: 41cf920622834ad9eb1a37318e66dada470d3927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-FileCopyrightText: © 2020 Grégoire Duchêne <gduchene@awhk.org>
# SPDX-License-Identifier: ISC

FROM golang:1.23
WORKDIR /root
COPY . ./
ENV CGO_ENABLED=0
RUN go test
RUN go build

FROM scratch
COPY --from=0 /root/fwdsms /usr/bin/fwdsms

EXPOSE 8080
ENTRYPOINT ["/usr/bin/fwdsms"]