Skip to content

Commit

Permalink
Fix building on latest alpine
Browse files Browse the repository at this point in the history
Turns out installing gawk fixes the problem.
  • Loading branch information
sharkwouter committed Dec 18, 2024
1 parent b72bb81 commit 6831885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# First stage
FROM alpine:3.20
FROM alpine:latest

ENV PSPDEV /usr/local/pspdev
ENV PATH $PATH:${PSPDEV}/bin
COPY . /src


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

Expand Down

0 comments on commit 6831885

Please sign in to comment.