Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# First stage of Dockerfile
# Point to fixed 3.20.3 as 3.21.0 has issues compiling GCC
FROM alpine:3.20.3
FROM alpine:latest

ENV PS2DEV /usr/local/ps2dev
ENV PATH $PATH:${PS2DEV}/ee/bin

COPY . /src

RUN apk add build-base bash gcc git make flex bison texinfo gmp-dev mpfr-dev mpc1-dev
RUN apk add build-base bash gcc git make flex bison texinfo gmp-dev mpfr-dev mpc1-dev gawk
RUN cd /src && ./toolchain.sh

# Second stage of Dockerfile
Expand Down
Loading