mittos65/toolchain/Dockerfile.run
2022-01-16 21:17:47 +01:00

18 lines
317 B
Docker

FROM debian
RUN apt-get update && \
apt-get install -y \
qemu-system-x86 \
gdb \
novnc \
netcat \
&& cp /usr/share/novnc/vnc_lite.html /usr/share/novnc/index.html
ENV MITTOS64 "true"
ENV BUILDROOT "/opt"
COPY run-entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
WORKDIR "/opt"