Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmaddox committed Oct 7, 2023
1 parent 90c3d5d commit 0cf179f
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@ FROM voidlinux/voidlinux-musl:latest as build

RUN echo repository=https://repo-fastly.voidlinux.org/current/musl/nonfree > /etc/xbps.d/10-repository-nonfree.conf
RUN xbps-install -Sy \
xbps
RUN xbps-install -Syu
RUN xbps-install -Sy \
xbps \
&& xbps-install -Syu \
&& xbps-install -Sy \
gcc \
git \
make

RUN git clone \
--depth=1 \
--recursive \
git://git.suckless.org/quark
WORKDIR quark
RUN make
RUN make install
make \
&& git clone \
--depth=1 \
--recursive \
git://git.suckless.org/quark \
&& cd quark \
&& make \
&& make install \
&& command -v quark \
&& ldd $(command -v quark)
#WORKDIR quark

FROM scratch

Expand Down

0 comments on commit 0cf179f

Please sign in to comment.