blob: 021766ad593f0360fdf4b3e7a9aafc5889010f03 (
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 grumps-master \
&& make build
FROM scratch
COPY --from=build /opt/workspace/sally/_tmp/sally /sally
COPY sally.yaml /sally.yaml
CMD ["/sally"]
|