mirror of
https://github.com/tschettervictor/bsd-apps.git
synced 2026-04-29 03:57:08 +02:00
14 lines
329 B
Plaintext
14 lines
329 B
Plaintext
# TinyIce Bastillefile
|
|
|
|
ARG APP_NAME=tinyice
|
|
ARG DATA_PATH=/apps/tinyice
|
|
ARG NODE_VERSION=20
|
|
|
|
MOUNT ${DATA_PATH}/config /usr/local/etc/tinyice nullfs rw 0 0
|
|
|
|
CP ${APP_NAME}-install.sh /tmp
|
|
|
|
SYSRC -f /tmp/${APP_NAME}-install.sh NODE_VERSION=${NODE_VERSION}
|
|
|
|
CMD chmod +x /tmp/${APP_NAME}-install.sh
|
|
CMD /tmp/${APP_NAME}-install.sh |