forked from misprit7/computerraria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
102 lines (84 loc) · 4 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# syntax = docker/dockerfile:1.2
################################################################################
# CI dockerfile
################################################################################
# This dockerfile contains everything required to run a full CI test suite
#
# One could potentially also use this for development, as long as another
# computer with a Terraria client installed can connect
################################################################################
# Base
################################################################################
# Probably should have used this in hindsight:
# https://github.com/tModLoader/tModLoader/tree/1.4/patches/tModLoader/Terraria/release_extras/DedicatedServerUtils
FROM steamcmd/steamcmd:latest
################################################################################
# Base
################################################################################
# Yeah I'm not supposed to install user applications (vim), but it helps when
# debugging and is trivially lightweight
RUN apt-get update && apt-get install -y \
bsdmainutils \
curl \
gcc \
git \
libicu70 \
python3 \
python3-pip \
make \
vim \
wget
################################################################################
# tModLoader
################################################################################
RUN --mount=type=secret,id=_env,dst=/etc/secrets/.env \
echo exit | steamcmd \
"+login $(sed -n 1p /etc/secrets/.env) $(sed -n 2p /etc/secrets/.env)" \
"+app_update 1281930 validate" &&\
ln -s /root/Steam/steamapps/ /root/.local/share/Steam/ &&\
mkdir -p /root/.local/share/Terraria/tModLoader/ModSources &&\
mkdir -p /root/.local/share/Terraria/tModLoader/Mods
COPY tModLoader.targets /root/.local/share/Terraria/tModLoader/ModSources
################################################################################
# RISCV Toolchain
################################################################################
# These are kind of sketchy prebuilt binaries, but building from scratch takes
# forever
WORKDIR /opt
RUN mkdir /opt/riscv &&\
wget https://github.com/stnolting/riscv-gcc-prebuilt/releases/download/rv32i-4.0.0/riscv32-unknown-elf.gcc-12.1.0.tar.gz &&\
tar -xzf riscv32-unknown-elf.gcc-12.1.0.tar.gz -C /opt/riscv/ &&\
rm riscv32-unknown-elf.gcc-12.1.0.tar.gz
WORKDIR /root
################################################################################
# Rust
################################################################################
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh &&\
sh rustup.sh -y --profile minimal &&\
source "$HOME/.cargo/env" &&\
rustup target add riscv32i-unknown-none-elf &&\
rustup component add llvm-tools-preview &&\
cargo install cargo-binutils &&\
rm -rf /root/.cargo/registry &&\
rustup target remove x86_64-unknown-linux-gnu
ENV PATH "$PATH:/opt/riscv/bin"
################################################################################
# Dotnet
################################################################################
RUN wget https://dot.net/v1/dotnet-install.sh &&\
bash ./dotnet-install.sh --install-dir /usr/local/bin -channel STS -version 6.0.100 &&\
dotnet --list-sdks
################################################################################
# Riscof
################################################################################
RUN pip3 install git+https://github.com/riscv/riscof.git
# I should set this up to be built, right now it relies on host machine
# already having it installed
# This would require setting up ocaml as well as other build dependencies
COPY riscv_sim_RV32 /usr/local/bin
################################################################################
# Entry point
################################################################################
# Override default entrypoint/cmd from base image
ENTRYPOINT ["/usr/bin/env"]
CMD ["/bin/bash"]