Skip to content
Open
Changes from 1 commit
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
13 changes: 7 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ ENV LANG=C.UTF-8

RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# Add source for practicerom-dev install
RUN apt-get update && apt-get install -y curl && \
curl -o /usr/share/keyrings/practicerom-archive-keyring.gpg https://practicerom.com/public/packages/debian/practicerom-archive-keyring.gpg && \
echo 'deb [arch=all,amd64 signed-by=/usr/share/keyrings/practicerom-archive-keyring.gpg] http://practicerom.com/public/packages/debian unstable main' > /etc/apt/sources.list.d/practicerom.list

# Install Required Dependencies
RUN apt-get update && apt-get install -y \
build-essential \
Expand All @@ -27,7 +22,13 @@ RUN apt-get update && apt-get install -y \
clang-tidy-14 \
clang-format-14 \
libpng-dev \
practicerom-dev
sudo \
curl

# Add source for practicerom-dev install

RUN sudo sh -c "$(curl -fsSL https://raw.githubusercontent.com/PracticeROM/packages/HEAD/scripts/install-debian_amd64.sh)" && \
Comment thread
Zeri-Ai marked this conversation as resolved.
Outdated
apt-get install -y practicerom-dev

# Post dependencies cleanup
RUN apt-get clean && \
Expand Down