17 lines
353 B
Docker
Raw Normal View History

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:25:20 -07:00
COPY build.sh /ttn-gateway/build.sh
2016-03-22 16:01:00 -07:00
WORKDIR /ttn-gateway
2016-03-22 16:25:20 -07:00
RUN ./build.sh
2016-03-21 12:36:55 -07:00
2016-03-22 16:08:14 -07:00
# Copy the run shell script after build, so we can modify it without rebuilding
2016-03-25 10:14:19 -04:00
COPY run.sh /opt/ttn-gateway/run.sh
WORKDIR /opt/ttn-gateway
2016-03-21 12:36:55 -07:00
# Start it up
2016-03-22 16:25:20 -07:00
CMD ["sh", "-c", "./run.sh"]