summaryrefslogtreecommitdiff
path: root/Bastillefile
blob: cfec439f1c34fc22c38512f9ffed2f8e5800e2c4 (plain) (blame)
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
# Dirs and mounts
CMD mkdir -p /var/db/gl
FSTAB /zroot/gl /var/db/gl nullfs rw 0 0

# Prereqs
PKG nginx yarn sqlite3

# Download sources
CMD curl -kf http://192.168.1.50:3000/53hornet/theglassyladies/archive/master.tar.gz -o /tmp/master.tar.gz
CMD tar -xzvf /tmp/master.tar.gz -C /tmp

# Build backend
#CMD CARGO_HOME=/tmp cargo install --root /usr/local diesel_cli --no-default-features --features sqlite
CMD curl https://sh.rustup.rs -sSf | sh -s -- -y
CMD CARGO_HOME=/tmp ~/.cargo/bin/cargo install --root /usr/local --path /tmp/theglassyladies/dichroism

# Build frontend
CMD cd /tmp/theglassyladies/iridescence ; yarn ; yarn build
CMD mv /tmp/theglassyladies/iridescence/dist /var/www

# Config
OVERLAY usr
SYSRC nginx_enable=YES
SERVICE nginx start