-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated build instructions for Debian 11
- Loading branch information
Showing
2 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
FROM ubuntu:xenial | ||
# FROM ubuntu:xenial | ||
FROM debian:12-slim | ||
LABEL maintainer="[email protected]" | ||
|
||
ENV PS3DEV /usr/local/ps3dev | ||
|
@@ -11,7 +12,7 @@ RUN \ | |
apt-get -y update && \ | ||
apt-get -y install \ | ||
autoconf bison build-essential ca-certificates flex git libelf-dev\ | ||
libgmp-dev libncurses5-dev libssl-dev libtool-bin pkg-config python-dev \ | ||
libgmp-dev libncurses5-dev libssl-dev libtool-bin pkg-config python-dev-is-python3 \ | ||
texinfo wget zlib1g-dev && \ | ||
apt-get -y clean autoclean autoremove && \ | ||
rm -rf /var/lib/{apt,dpkg,cache,log}/ | ||
|
@@ -21,6 +22,6 @@ WORKDIR /build | |
COPY . /build | ||
|
||
# Fixes certificate errors with letsencrypt in ARMv7 | ||
RUN echo "\nca_certificate=/etc/ssl/certs/ca-certificates.crt" | tee -a /etc/wgetrc | ||
RUN /build/toolchain.sh | ||
# RUN echo "\nca_certificate=/etc/ssl/certs/ca-certificates.crt" | tee -a /etc/wgetrc | ||
# RUN /build/toolchain.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters