feat: Build process for 2 binaries (api,cli)

This commit is contained in:
Karan Sharma 2021-03-02 18:58:49 +05:30
parent 083ba19363
commit 7d0499c432
3 changed files with 68 additions and 20 deletions

5
Dockerfile-cli Normal file
View file

@ -0,0 +1,5 @@
# Dockerfile
ARG ARCH
FROM ${ARCH}/alpine
COPY doggo /usr/bin/doggo
ENTRYPOINT ["/usr/bin/doggo"]