init
This commit is contained in:
30
Dockerfile
Normal file
30
Dockerfile
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
FROM mcr.microsoft.com/dotnet/sdk:6.0
|
||||||
|
|
||||||
|
RUN \
|
||||||
|
apt-get update; \
|
||||||
|
apt-get -y upgrade; \
|
||||||
|
apt-get install -y --no-install-recommends \
|
||||||
|
curl \
|
||||||
|
wget \
|
||||||
|
make \
|
||||||
|
python3 \
|
||||||
|
unzip \
|
||||||
|
mono-complete
|
||||||
|
|
||||||
|
|
||||||
|
RUN useradd -d /home/openra -m -s /sbin/nologin openra
|
||||||
|
|
||||||
|
WORKDIR /home/openra
|
||||||
|
|
||||||
|
USER openra
|
||||||
|
|
||||||
|
RUN curl -L https://github.com/ABrandau/Shattered-Paradise-SDK/archive/refs/tags/playtest-20240526.tar.gz | tar -xz
|
||||||
|
|
||||||
|
RUN mv Shattered-Paradise-SDK-playtest-20240526/* .
|
||||||
|
RUN rm -rf Shattered-Paradise-SDK-playtest-20240526
|
||||||
|
|
||||||
|
RUN make
|
||||||
|
|
||||||
|
EXPOSE 1234
|
||||||
|
|
||||||
|
ENTRYPOINT ["./launch-dedicated.sh"]
|
||||||
Reference in New Issue
Block a user