Skip to content

Commit

Permalink
Merge pull request #58 from pspdev/build-on-alpine-latest
Browse files Browse the repository at this point in the history
Fix building on latest alpine
  • Loading branch information
diamant3 authored Dec 18, 2024
2 parents 2b1d2d9 + 6831885 commit 4c017a9
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 4c017a9

Please sign in to comment.