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

This commit is contained in:
Karan Sharma 2021-03-02 18:58:49 +05:30
parent 60158d95d5
commit e3755428f2
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"]