Disable z88dk - presumably this is a musl/glibc thing

This commit is contained in:
Neil McPhail 2025-04-28 23:01:27 +01:00
parent ba5ce07264
commit e344cbd0f1
2 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
FROM z88dk/z88dk:latest AS z88dk #FROM z88dk/z88dk:latest AS z88dk
FROM ubuntu:24.04 AS build FROM ubuntu:24.04 AS build
RUN apt-get update \ RUN apt-get update \
@ -41,7 +41,8 @@ COPY --from=build /zxbasic/zxbasm.py /opt/zxbasic/zxbasm
COPY --from=build /zxbasic/zxbc.py /opt/zxbasic/zxbc COPY --from=build /zxbasic/zxbc.py /opt/zxbasic/zxbc
COPY --from=build /zxbasic/zxbpp.py /opt/zxbasic/zxbpp COPY --from=build /zxbasic/zxbpp.py /opt/zxbasic/zxbpp
COPY --from=build /zxbasic/src /opt/zxbasic/src COPY --from=build /zxbasic/src /opt/zxbasic/src
COPY --from=z88dk /opt/z88dk /opt/z88dk #COPY --from=z88dk /opt/z88dk /opt/z88dk
USER ubuntu USER ubuntu
RUN echo "PATH=$PATH:/opt/z88dk/bin:/opt/zxbasic" >> ~/.profile #RUN echo "PATH=$PATH:/opt/z88dk/bin:/opt/zxbasic" >> ~/.profile
RUN echo "ZCCCFG=/opt/z88dk/lib/config/" >> ~/.profile #RUN echo "export ZCCCFG=/opt/z88dk/lib/config/" >> ~/.profile
RUN echo "PATH=$PATH:/opt/zxbasic" >> ~/.profile

View File

@ -8,7 +8,7 @@ The devcontainer contains:
- z80asm (assembler) - z80asm (assembler)
- z80dasm (disassembler) - z80dasm (disassembler)
- zmakebas (creates BASIC programs) - zmakebas (creates BASIC programs)
- z88dk (C compiler and other utilities including assembler) - ~~z88dk (C compiler and other utilities including assembler)~~ - not currently functional
- utilities from the FUSE emulator: - utilities from the FUSE emulator:
- audio2tape - audio2tape
- createhdf - createhdf