xref: /reactos/.gitpod.Dockerfile (revision a23249e1)
104d0d95bSJérôme GardouFROM gitpod/workspace-full-vnc
204d0d95bSJérôme Gardou
304d0d95bSJérôme GardouUSER gitpod
404d0d95bSJérôme Gardou
504d0d95bSJérôme Gardou# Install custom tools, runtime, etc. using apt-get
604d0d95bSJérôme Gardou# For example, the command below would install "bastet" - a command line tetris clone:
704d0d95bSJérôme Gardou#
804d0d95bSJérôme Gardou# RUN sudo apt-get -q update && #     sudo apt-get install -yq bastet && #     sudo rm -rf /var/lib/apt/lists/*
904d0d95bSJérôme Gardou#
1004d0d95bSJérôme Gardou# More information: https://www.gitpod.io/docs/config-docker/
1104d0d95bSJérôme GardouRUN sudo apt-get -q update && \
1204d0d95bSJérôme Gardou    sudo apt-get -yq upgrade && \
1304d0d95bSJérôme Gardou    sudo apt-get -yq install qemu-system-x86 qemu-utils gdb-mingw-w64 && \
1404d0d95bSJérôme Gardou    sudo rm -rf /var/lib/apt/lists/*
1504d0d95bSJérôme Gardou
1604d0d95bSJérôme GardouRUN wget https://svn.reactos.org/amine/RosBEBinFull.tar.gz && \
17*a23249e1SLucas Puntillo    sudo tar -xzvf RosBEBinFull.tar.gz -C /usr/local --one-top-level=RosBE --strip-components 1 && \
1804d0d95bSJérôme Gardou    rm -f RosBEBinFull.tar.gz
1904d0d95bSJérôme Gardou
2004d0d95bSJérôme GardouRUN echo 'export PATH=/usr/local/RosBE/i386/bin:$PATH' >> /home/gitpod/.profile
2104d0d95bSJérôme Gardou
2204d0d95bSJérôme GardouRUN qemu-img create -f qcow2 reactos_hdd.qcow 10G
23