mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-13 01:05:37 +02:00
🐛 fix: Rename netris to nestri (#78)
## Description **What issue are you solving (or what feature are you adding) and how are you doing it?** This PR is the first in a series of PRs trying to solve the issue #48 by renaming `Netris` to `Nestri` to avoid Trademark legal issues.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#This contains all the necessary libs for the server to work.
|
||||
#NOTE: KEEP THIS IMAGE AS LEAN AS POSSIBLE.
|
||||
FROM ghcr.io/wanjohiryan/netris/base:nightly
|
||||
FROM ghcr.io/nestriness/nestri/base:nightly
|
||||
|
||||
ENV TZ=UTC \
|
||||
SIZEW=1920 \
|
||||
@@ -32,15 +32,15 @@ RUN apt-get update -y \
|
||||
# && chmod 755 /usr/bin/winetricks \
|
||||
# && curl -fsSL -o /usr/share/bash-completion/completions/winetricks "https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks.bash-completion"
|
||||
|
||||
#Install Proton
|
||||
COPY .scripts/proton /usr/bin/netris-proton
|
||||
RUN chmod 755 /usr/bin/netris-proton
|
||||
#Install Proton
|
||||
COPY .scripts/proton /usr/bin/nestri-proton
|
||||
RUN chmod 755 /usr/bin/nestri-proton
|
||||
|
||||
ARG USERNAME=netris \
|
||||
ARG USERNAME=nestri \
|
||||
PUID=1000 \
|
||||
PGID=1000 \
|
||||
UMASK=000 \
|
||||
HOME="/home/netris"
|
||||
HOME="/home/nestri"
|
||||
|
||||
ENV XDG_RUNTIME_DIR=/tmp/runtime-1000
|
||||
|
||||
@@ -68,8 +68,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
|
||||
&& echo "${USERNAME} ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers \
|
||||
&& ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone
|
||||
|
||||
COPY --from=ghcr.io/wanjohiryan/netris/warp:nightly /usr/bin/warp /usr/bin/
|
||||
COPY --from=ghcr.io/netrisdotme/netris/warp-input:nightly /usr/bin/warp-input /usr/bin/warp-input
|
||||
COPY --from=ghcr.io/nestriness/nestri/warp:nightly /usr/bin/warp /usr/bin/
|
||||
COPY --from=ghcr.io/nestriness/nestri/warp-input:nightly /usr/bin/warp-input /usr/bin/warp-input
|
||||
RUN chmod +x /usr/bin/warp /usr/bin/warp-input
|
||||
COPY .scripts /etc/
|
||||
RUN chmod 755 /etc/supervisord.conf /etc/entrypoint.sh /etc/startup.sh
|
||||
|
||||
Reference in New Issue
Block a user