Backup
This commit is contained in:
parent
2b1ae32c56
commit
df095b3d81
2
Makefile
2
Makefile
|
|
@ -36,7 +36,7 @@ tmp:
|
|||
|
||||
test-in-docker-wine: .dockerfiles
|
||||
docker build . -f dockerfiles/build/Dockerfile.wine --tag pffi-test-wine
|
||||
docker run -v ${PWD}:/workdir:z pffi-test-wine
|
||||
docker run --privileged --cap-add=all -v ${PWD}:/workdir:z pffi-test-wine
|
||||
|
||||
test-in-docker-debian-trixie: .dockerfiles
|
||||
docker build . -f dockerfiles/build/Dockerfile.debian_trixie --tag pffi-test-debian-trixie
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
FROM debian:trixie
|
||||
RUN dpkg --add-architecture i386 && dpkg --add-architecture amd64 && dpkg --add-architecture aarch64
|
||||
RUN apt-get update && apt-get install -y wine64:amd64
|
||||
RUN wget
|
||||
RUN apt-get update && apt-get install -y wine:i386 binfmt-support qemu-user tree wget && update-binfmts --display
|
||||
RUN wget https://bitbucket.org/ktakashi/sagittarius-scheme/downloads/setup_sagittarius_0.9.11.exe
|
||||
RUN wine setup_sagittarius_0.9.11.exe /quiet
|
||||
RUN tree ${HOME}/.wine
|
||||
|
|
|
|||
Loading…
Reference in New Issue