Files
mittos65/toolchain/Dockerfile.run
2022-01-04 21:57:47 +01:00

16 lines
233 B
Docker

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