forked from pspdev/pspdev-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
23 lines (18 loc) · 781 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM ubuntu:latest
MAINTAINER Naomi Peori <[email protected]>
WORKDIR /build
ENV DEBIAN_FRONTEND="noninteractive"
ENV PSPDEV /usr/local/pspdev
ENV PATH ${PATH}:${PSPDEV}/bin
RUN \
apt-get -y update && \
apt-get -y install autoconf automake bison bzip2 cmake doxygen flex g++ gcc git gzip libarchive-dev libcurl4-openssl-dev libelf-dev libgpgme-dev libncurses5-dev libreadline-dev libssl-dev libtool-bin libusb-dev m4 make patch pkg-config python3 python3-venv subversion tar tcl texinfo unzip wget xz-utils && \
apt-get -y clean autoclean autoremove && \
rm -rf /var/lib/{apt,dpkg,cache,log}/
SHELL ["/bin/bash", "-c"]
RUN \
git clone https://github.com/pspdev/psptoolchain.git && \
pushd psptoolchain && \
./toolchain.sh && \
popd && \
rm -Rf psptoolchain