The Drone runner environment does not have `pip` or `mkdocs` on PATH even when installed via the Docker image. Use `pip3` explicitly and invoke mkdocs as `python3 -m mkdocs` to ensure reliable execution. Also add --break-system-packages to the fallback install.
25 lines
1022 B
Docker
25 lines
1022 B
Docker
FROM ubuntu:latest
|
|
|
|
VOLUME ["/code"]
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN dpkg --add-architecture i386
|
|
RUN apt-get update && apt-get install -y \
|
|
curl dos2unix wget git make nasm binutils xorriso grub-pc-bin gcc gcc-multilib \
|
|
python3 python3-pip && \
|
|
apt-get clean my room
|
|
|
|
RUN pip3 install --no-cache-dir --break-system-packages "mkdocs>=1.6,<2" mkdocs-material
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
ARG FPC_VERSION=3.2.2
|
|
RUN curl -sL https://sourceforge.net/projects/freepascal/files/Linux/$FPC_VERSION/fpc-$FPC_VERSION.i386-linux.tar/download | tar -xf - && \
|
|
pushd fpc-$FPC_VERSION.i386-linux && ./install.sh && popd && \
|
|
rm -rf fpc-$FPC_VERSION.i386-linux
|
|
|
|
ADD https://raw.githubusercontent.com/fsaintjacques/semver-tool/master/src/semver /usr/bin/semver
|
|
RUN chmod +x /usr/bin/semver
|
|
WORKDIR /code
|
|
RUN find . -type f -print0 | xargs -0 dos2unix
|
|
ENTRYPOINT ["/bin/bash", "-c"]
|
|
CMD ["find toolchain -name '*.sh' -exec dos2unix {} + 2>/dev/null; find toolchain -name '*.sh' -exec chmod +x {} +; bash toolchain/compile.sh"] |