mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
a23249e137
change extract directory to automatically extract to RosBE, and set tar to verbose mode shorting the waiting time for the user and have verbose mode activated to show if there were any issues with the file itself. therefore helping the user and developer.
23 lines
868 B
Docker
23 lines
868 B
Docker
FROM gitpod/workspace-full-vnc
|
|
|
|
USER gitpod
|
|
|
|
# Install custom tools, runtime, etc. using apt-get
|
|
# For example, the command below would install "bastet" - a command line tetris clone:
|
|
#
|
|
# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/*
|
|
#
|
|
# More information: https://www.gitpod.io/docs/config-docker/
|
|
RUN sudo apt-get -q update && \
|
|
sudo apt-get -yq upgrade && \
|
|
sudo apt-get -yq install qemu-system-x86 qemu-utils gdb-mingw-w64 && \
|
|
sudo rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN wget https://svn.reactos.org/amine/RosBEBinFull.tar.gz && \
|
|
sudo tar -xzvf RosBEBinFull.tar.gz -C /usr/local --one-top-level=RosBE --strip-components 1 && \
|
|
rm -f RosBEBinFull.tar.gz
|
|
|
|
RUN echo 'export PATH=/usr/local/RosBE/i386/bin:$PATH' >> /home/gitpod/.profile
|
|
|
|
RUN qemu-img create -f qcow2 reactos_hdd.qcow 10G
|