16 lines
233 B
Docker
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" |