ttn-resin-gateway-rpi/Dockerfile~

21 lines
414 B
Docker
Raw Normal View History

2016-03-21 21:41:24 +00:00
FROM resin/raspberrypi-buildpack-deps
2016-03-21 19:36:55 +00:00
# Enable systemd
ENV INITSYSTEM on
2016-03-22 22:46:08 +00:00
# Copy the installer
run pwd
# COPY . ~/ttn-gateway
COPY ./resin-install.sh ~/ttn-gateway
2016-03-21 20:49:34 +00:00
# Build the gateway
WORKDIR ~/ttn-gateway
2016-03-22 04:25:53 +00:00
RUN ./resin-install.sh
2016-03-21 19:36:55 +00:00
2016-03-21 20:49:34 +00:00
# Make sure we start up within the bin directory
2016-03-21 22:23:08 +00:00
WORKDIR /opt/ttn-gateway/bin
2016-03-22 22:46:08 +00:00
COPY ./resin-run.sh /opt/ttn-gateway/bin/resin-run.sh
2016-03-21 19:36:55 +00:00
2016-03-21 20:49:34 +00:00
# Start it up
2016-03-22 04:25:53 +00:00
CMD ["sh", "-c", "./resin-run.sh"]