feat: bin publisher docker img. Get bin from realaravinth/librepages
This commit is contained in:
parent
ee23632e90
commit
88aa76c55b
2 changed files with 12 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
/target
|
**/target/
|
||||||
tarpaulin-report.html
|
tarpaulin-report.html
|
||||||
.env
|
.env
|
||||||
cobertura.xml
|
cobertura.xml
|
||||||
|
|
11
scripts/publish-bins-docker
Normal file
11
scripts/publish-bins-docker
Normal 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"]
|
Loading…
Reference in a new issue