Skip to content

Commit 02fb0ac

Browse files
committed
refactor(server): Update VNyanNet Server version to 1.4 and change API key in Dockerfile
Changes: - Updated download link for VNyanNet Server from Itch.io to point to version 1.4 - Changed the environment variable `VNYAN_VERSION` to reflect the updated server version (from 1.3 to 1.4) - Removed old commented out code related to the previous server version (v1.3) - Added the API key back into the Dockerfile for the new VNyanNet Server download link Note: The changes are specific to the Dockerfile and do not affect the rest of the project, unless the Dockerfile is used elsewhere.
1 parent 22d30e0 commit 02fb0ac

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,14 @@ RUN dpkg --add-architecture i386 && \
1111

1212
WORKDIR /server
1313

14-
<<<<<<< HEAD
15-
# Download VNyanNet Server (1.3) from Itch.io
14+
# Download VNyanNet Server (1.4) from Itch.io
1615
# Note: this follows redirects and uses the Itch.io filename automatically.
1716
RUN wget --content-disposition -O VNyanNetServer.zip "https://drive.nekosunevr.co.uk/public.php/dav/files/p7xjS2TpD6St7wN/VNyanNetServer-1.4.zip" || echo "Please provide manual download link if private."
1817

1918
# Extract and clean up
2019
RUN if [ -f VNyanNetServer.zip ]; then unzip VNyanNetServer.zip; fi
21-
=======
22-
ENV VNYAN_VERSION=1.3
23-
>>>>>>> c4d4b2dfe3d30d2b4d5e99f0e3450f4c2bcaf27d
2420

21+
ENV VNYAN_VERSION=1.4
2522
COPY entrypoint.sh /entrypoint.sh
2623
RUN chmod +x /entrypoint.sh
2724

0 commit comments

Comments
 (0)