2016-03-21 20:49:34 +00:00
|
|
|
FROM resin/raspberrypi-buildpack-deps
|
2016-03-21 19:36:55 +00:00
|
|
|
|
2016-03-25 18:13:02 +00:00
|
|
|
# Enable systemd, as Resin requires this
|
2016-03-21 19:36:55 +00:00
|
|
|
ENV INITSYSTEM on
|
|
|
|
|
2016-03-25 18:21:04 +00:00
|
|
|
# Version number of gateway software.
|
2016-03-25 18:13:02 +00:00
|
|
|
# (Incrementing this simply forces Docker to flush its cache
|
2016-03-25 18:21:04 +00:00
|
|
|
# and thus forces a full rebuild. Not used outside of Dockerfile.)
|
2016-03-26 17:56:33 +00:00
|
|
|
ENV TTN_GATEWAY_SOFTWARE 47
|
2016-03-25 18:13:02 +00:00
|
|
|
|
2016-03-21 19:36:55 +00:00
|
|
|
# Build the gateway
|
2016-03-25 14:38:57 +00:00
|
|
|
COPY build.sh /tmp/build.sh
|
|
|
|
WORKDIR /tmp
|
2016-03-22 23:25:20 +00:00
|
|
|
RUN ./build.sh
|
2016-03-21 19:36:55 +00:00
|
|
|
|
2016-03-22 23:08:14 +00:00
|
|
|
# Copy the run shell script after build, so we can modify it without rebuilding
|
2016-03-25 14:14:19 +00:00
|
|
|
COPY run.sh /opt/ttn-gateway/run.sh
|
|
|
|
WORKDIR /opt/ttn-gateway
|
2016-03-21 19:36:55 +00:00
|
|
|
|
|
|
|
# Start it up
|
2016-03-22 23:25:20 +00:00
|
|
|
CMD ["sh", "-c", "./run.sh"]
|