17 lines
280 B
Text
17 lines
280 B
Text
|
FROM gliderlabs/alpine:latest
|
||
|
|
||
|
MAINTAINER Tobie Morgan Hitchcock <tobie@abcum.com>
|
||
|
|
||
|
# Install
|
||
|
|
||
|
ADD gui .
|
||
|
|
||
|
ADD surreal .
|
||
|
|
||
|
# Expose the necessary ports
|
||
|
|
||
|
EXPOSE 8000 33693
|
||
|
|
||
|
# Set the default command
|
||
|
|
||
|
CMD echo $(ip route | awk '/default/ { print $3 }') docker >> /etc/hosts && surreal
|