Files
clsi/entrypoint.sh
2018-03-29 12:12:29 +01:00

16 lines
314 B
Bash
Executable File

#!/bin/sh
echo "Changing permissions of /var/run/docker.sock for sibling containers"
chown root:docker /var/run/docker.sock
mkdir -p /app/cache
chown -R node:node /app/cache
mkdir -p /app/compiles
chown -R node:node /app/compiles
./bin/install_texlive_gce.sh
echo "HELOOOo"
echo "$@"
exec runuser -u node "$@"