librepages/scripts/publish-bins-docker
Aravinth Manivannan 4b1535848f
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: rm cmd in publisher
2022-12-19 14:16:46 +05:30

10 lines
242 B
Text

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