ttn-resin-gateway-rpi/Dockerfile

16 lines
393 B
Docker
Raw Normal View History

2016-03-21 20:49:34 +00:00
FROM resin/raspberrypi-buildpack-deps
2016-03-21 19:36:55 +00:00
# Enable systemd
ENV INITSYSTEM on
# Build the gateway
2016-03-22 23:01:56 +00:00
COPY resin-install.sh /ttn-gateway/resin-install.sh
2016-03-22 23:01:00 +00:00
WORKDIR /ttn-gateway
2016-03-22 04:21:11 +00:00
RUN ./resin-install.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-22 23:01:56 +00:00
COPY resin-run.sh /opt/ttn-gateway/bin/resin-run.sh
2016-03-21 19:36:55 +00:00
# Start it up
2016-03-22 23:08:14 +00:00
CMD ["sh", "-c", "/opt/ttn-gateway/bin/resin-run.sh"]