blob: 20b9b90b64c5142692bf56971bfcf3529feda093 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM golang:1.22 as build
RUN mkdir -p /opt/workspace \
&& git clone https://git.ofmax.li/sally /opt/workspace/sally \
&& cd /opt/workspace/sally \
&& git checkout master \
&& make build
FROM scratch
COPY --from=build /opt/workspace/sally/_tmp/sally /sally
COPY sally.yaml /sally.yaml
CMD ["/sally"]
|