Files
ppsspp/Dockerfile
T
2026-06-16 21:09:14 +02:00

21 lines
478 B
Docker

# First stage
FROM alpine:latest
COPY . /src
RUN apk add build-base wget git bash cmake python3 glu-dev sdl3-dev sdl3_ttf-dev
RUN cd src/ffmpeg && ./linux_x86-64.sh
RUN cd src && ./b.sh --headless
# Second stage
FROM alpine:latest
# Install required dependencies to make headless to work
RUN apk add --no-cache sdl3 sdl3_ttf libstdc++ glu-dev
# Copy minimal things to make headless to work
COPY --from=0 src/build/PPSSPPHeadless usr/local/bin/
RUN PPSSPPHeadless || true