ttn-resin-gateway-rpi/Dockerfile~

18 lines
347 B
Docker
Raw Normal View History

2016-03-21 19:36:55 +00:00
FROM resin/raspberrypi-golang
# Enable systemd
ENV INITSYSTEM on
# Copy all the source code to the place where golang will find it
2016-03-21 20:49:34 +00:00
COPY . ~/ttn-gateway
# Build the gateway
WORKDIR ~/ttn-gateway
RUN ./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
WORKDIR ~/opt/ttn-gateway/bin
2016-03-21 19:36:55 +00:00
2016-03-21 20:49:34 +00:00
# Start it up
CMD ["sh", "-c", "env && ./start.sh"]