Rebranded to reflect usage in Lime3DS

This commit is contained in:
OpenSauce04 2024-04-15 18:00:37 +01:00
parent 3d82e5bf29
commit b43f83ab6b
3 changed files with 7 additions and 8 deletions

View File

@ -1,3 +1,3 @@
# build-environments
Dockerfile entries used for building Citra binaries.
Dockerfile entries used for building Lime3DS binaries.
https://hub.docker.com/r/PabloMK7/build-environments/

View File

@ -1,12 +1,11 @@
FROM ubuntu:20.04
LABEL maintainer="citraemu"
ENV DEBIAN_FRONTEND=noninteractive
# Create a user account citra (UID 1027) that the container will run as
RUN useradd -m -u 1027 -s /bin/bash citra
# Create a user account lime (UID 1027) that the container will run as
RUN useradd -m -u 1027 -s /bin/bash lime
# Update system, install PPAs and install packages for building Citra.
# Update system, install PPAs and install packages for building Lime3DS.
RUN apt-get update && apt-get full-upgrade -y
RUN apt-get install -y software-properties-common lsb-release
RUN add-apt-repository -y ppa:savoury1/build-tools

View File

@ -1,9 +1,9 @@
FROM ubuntu:23.04
LABEL maintainer="citraemu"
ENV DEBIAN_FRONTEND=noninteractive
# Create a user account citra (UID 1027) that the container will run as
RUN useradd -m -u 1027 -s /bin/bash citra
# Create a user account lime (UID 1027) that the container will run as
RUN useradd -m -u 1027 -s /bin/bash lime
RUN apt-get update && apt-get -y full-upgrade
RUN apt-get install -y \