From ece67520e5c0a17fe6edb948bc211df6d9c9eea8 Mon Sep 17 00:00:00 2001 From: Ned Bingham Date: Mon, 18 Dec 2023 19:06:44 +0000 Subject: [PATCH] updating prspice to fix include --- Dockerfile | 2 +- Makefile | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf79bef..6cb256d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -154,7 +154,7 @@ RUN apt-get update --fix-missing; DEBIAN_FRONTEND=noninteractive apt-get install # install prspice WORKDIR /toolsrc -RUN git clone https://github.com/nbingham1/prspice.git --branch v0.0.1 +RUN git clone https://github.com/nbingham1/prspice.git --branch v0.0.2 WORKDIR prspice RUN make RUN cp prdbase prspice /opt/cad/bin diff --git a/Makefile b/Makefile index e761a70..e9889cc 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,8 @@ all: DOCKER_BUILDKIT=1 docker build --shm-size=4gb --secret id=user,src=.secret/user --secret id=token,src=.secret/token -t git.broccolimicro.io/broccoli/broccoli-cli:latest -t public.ecr.aws/l5h5o6z4/broccoli-cli:latest . +push: + docker push public.ecr.aws/l5h5o6z4/broccoli-cli:latest + +pull: + docker pull public.ecr.aws/l5h5o6z4/broccoli-cli:latest