blob: 2225a404bac39b66be3004b26cab770f69ac99ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM golang:1.17 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 grumps-build
FROM scratch
COPY --from=build /opt/workspace/sally/_tmp/sally /sally
COPY sally.yaml /sally.yaml
CMD ["/sally"]
|