forked from BeeStation/NSV13
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
72 lines (53 loc) · 1.96 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
FROM beestation/byond:513.1528 as base
ONBUILD ENV BYOND_MAJOR=513
ONBUILD ENV BYOND_MINOR=1528
FROM base as build_base
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git \
dos2unix\
ca-certificates
FROM build_base as rust_g
WORKDIR /rust_g
RUN apt-get install -y --no-install-recommends \
libssl-dev \
pkg-config \
curl \
gcc-multilib \
&& curl https://sh.rustup.rs -sSf | sh -s -- -y --default-host i686-unknown-linux-gnu \
&& git init \
&& git remote add origin https://github.com/BeeStation/rust-g
COPY dependencies.sh .
RUN dos2unix dependencies.sh \
&& /bin/bash -c "source dependencies.sh \
&& git fetch --depth 1 origin \$RUST_G_VERSION" \
&& git checkout FETCH_HEAD \
&& ~/.cargo/bin/cargo build --release --all-features \
&& apt-get --purge remove -y dos2unix
FROM base as dm_base
WORKDIR /beestation
FROM dm_base as build
COPY . .
RUN apt-get update \
&& apt-get install -y --no-install-recommends dos2unix \
&& rm -rf /var/lib/apt/lists/* \
&& DreamMaker -max_errors 0 nsv13.dme && dos2unix tools/deploy.sh && tools/deploy.sh /deploy
FROM dm_base
EXPOSE 1337
RUN apt-get update \
&& apt-get install -y --no-install-recommends software-properties-common \
&& add-apt-repository ppa:ubuntu-toolchain-r/test \
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends \
mariadb-client \
libssl1.0.0 \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /root/.byond/bin
COPY --from=rust_g /rust_g/target/release/librust_g.so /root/.byond/bin/rust_g
COPY --from=build /deploy ./
#extools fexists memes
RUN ln -s /beestation/libbyond-extools.so /root/.byond/bin/libbyond-extools.so
VOLUME [ "/beestation/config", "/beestation/data" ]
ENTRYPOINT [ "DreamDaemon", "nsv13.dmb", "-port", "1337", "-trusted", "-close", "-verbose" ]