34 lines
976 B
Plaintext
34 lines
976 B
Plaintext
IMAGE frontlinesms
|
|
LAYER shared/alpine
|
|
LAYER shared/java
|
|
LAYER frontlinesms/frontlinesms
|
|
|
|
RUN EOF
|
|
# Install runtime dependencies
|
|
apk --no-cache add openjdk8-jre ttf-opensans xf86-video-dummy xorg-server
|
|
|
|
# Create OS user
|
|
addgroup -S -g 8018 sms
|
|
adduser -S -u 8018 -h /srv/frontlinesms -s /bin/sh -g sms -G sms sms
|
|
adduser sms dialout
|
|
|
|
# Install FrontlineSMS
|
|
wget http://download-frontlinesms.s3.amazonaws.com/frontlinesms2_unix_2.6.5.sh -O /tmp/frontlinesms2.sh
|
|
|
|
# Hackfix for Busybox gunzip
|
|
sed -i 's/gunzip -V/echo/' /tmp/frontlinesms2.sh
|
|
echo -e 'o\n\nn\nSpotter\nSpotter\n11\n45\n\n\nadmin@example.com\n\n\n\n\n\n\n\n\n\n\n' | su - sms -c 'sh /tmp/frontlinesms2.sh -c'
|
|
|
|
# Replace Jetty port
|
|
sed -i 's/8130/8080/' /srv/frontlinesms/frontlinesms2/launcher.properties
|
|
|
|
# Cleanup
|
|
rm /tmp/frontlinesms2.sh
|
|
EOF
|
|
|
|
COPY lxc
|
|
|
|
MOUNT DIR /srv/frontlinesms/data srv/frontlinesms/.frontlinesms2
|
|
|
|
CMD s6-svscan /etc/services.d
|