2016-03-21 13:49:34 -07:00
|
|
|
FROM resin/raspberrypi-buildpack-deps
|
2016-03-21 12:36:55 -07:00
|
|
|
|
|
|
|
# Enable systemd
|
|
|
|
ENV INITSYSTEM on
|
|
|
|
|
|
|
|
# Build the gateway
|
2016-03-22 16:01:56 -07:00
|
|
|
COPY resin-install.sh /ttn-gateway/resin-install.sh
|
2016-03-22 16:01:00 -07:00
|
|
|
WORKDIR /ttn-gateway
|
2016-03-21 21:21:11 -07:00
|
|
|
RUN ./resin-install.sh
|
2016-03-21 12:36:55 -07:00
|
|
|
|
|
|
|
# Make sure we start up within the bin directory
|
2016-03-22 16:01:56 -07:00
|
|
|
COPY resin-run.sh /opt/ttn-gateway/bin/resin-run.sh
|
2016-03-21 14:41:24 -07:00
|
|
|
WORKDIR /opt/ttn-gateway/bin
|
2016-03-21 12:36:55 -07:00
|
|
|
|
|
|
|
# Start it up
|
2016-03-21 21:21:11 -07:00
|
|
|
CMD ["sh", "-c", "./resin-run.sh"]
|