Ian Fijolek
1f6193e486
All checks were successful
continuous-integration/drone/push Build is passing
9 lines
132 B
Docker
9 lines
132 B
Docker
ARG REPO=library
|
|
FROM ${REPO}/busybox:latest
|
|
WORKDIR /root/
|
|
|
|
ARG ARCH=amd64
|
|
COPY ./minitor-go ./minitor
|
|
|
|
ENTRYPOINT [ "./minitor" ]
|