feat: bin publisher docker img. Get bin from realaravinth/librepages

This commit is contained in:
Aravinth Manivannan 2022-12-19 13:34:29 +05:30
parent ee23632e90
commit 88aa76c55b
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
2 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/target
**/target/
tarpaulin-report.html
.env
cobertura.xml

View File

@ -0,0 +1,11 @@
FROM realaravinth/librepages:latest as base
RUN echo foo
FROM debian:bullseye-slim
RUN apt update
RUN apt-get -y --no-install-recommends install gpg tar curl wget
WORKDIR /src
COPY --from=base /usr/local/bin/librepages .
COPY . .
RUN find
CMD ["/src/scripts/bin-publish.sh"]