lspf icon indicating copy to clipboard operation
lspf copied to clipboard

docker base image "arch-devel" is missing

Open mgrossmann opened this issue 6 years ago • 1 comments

I'm unable to use docker to build LSPF. The base image used in the Dockerfile, "arch-devel", is missing.

mgrossmann avatar Feb 12 '20 11:02 mgrossmann

in case you're still trying to build this, i got the docker build running by making these changes:

FROM archlinux
LABEL maintainer="[email protected]"
RUN yes | pacman -Syu
RUN yes | pacman -S svn gcc git make cmake boost ncurses
WORKDIR /

ehrt74 avatar Mar 18 '22 16:03 ehrt74