Skip to content

Commit

Permalink
docker build working locally
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter committed Aug 8, 2023
1 parent 8089dba commit db6d909
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM busybox:1.36.1
FROM ubuntu:22.04

ARG VIAM_CLI viam-latest-linux-amd64
ARG VIAM_CLI=viam-latest-linux-amd64

RUN wget https://storage.googleapis.com/packages.viam.com/apps/viam-cli/${VIAM_CLI}
RUN apt update && apt install -qqy wget && apt clean && apt autoclean
RUN wget https://storage.googleapis.com/packages.viam.com/apps/viam-cli/$VIAM_CLI
COPY upload.sh .

CMD ./upload.sh

0 comments on commit db6d909

Please sign in to comment.