Browse Source

Rebranded to reflect usage in Lime3DS

master
OpenSauce04 2 years ago
parent
commit
b43f83ab6b
  1. 2
      README.md
  2. 7
      linux-appimage/Dockerfile
  3. 6
      linux-fresh/Dockerfile

2
README.md

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

7
linux-appimage/Dockerfile

@ -1,12 +1,11 @@
FROM ubuntu:20.04 FROM ubuntu:20.04
LABEL maintainer="citraemu"
ENV DEBIAN_FRONTEND=noninteractive 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 update && apt-get full-upgrade -y
RUN apt-get install -y software-properties-common lsb-release RUN apt-get install -y software-properties-common lsb-release
RUN add-apt-repository -y ppa:savoury1/build-tools RUN add-apt-repository -y ppa:savoury1/build-tools

6
linux-fresh/Dockerfile

@ -1,9 +1,9 @@
FROM ubuntu:23.04 FROM ubuntu:23.04
LABEL maintainer="citraemu"
ENV DEBIAN_FRONTEND=noninteractive 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 update && apt-get -y full-upgrade
RUN apt-get install -y \ RUN apt-get install -y \

Loading…
Cancel
Save