ttn-resin-gateway-rpi/Dockerfile~
2016-03-21 21:38:11 -07:00

19 lines
368 B
Docker

FROM resin/raspberrypi-buildpack-deps
# Enable systemd
ENV INITSYSTEM on
# Copy all the source code to the place where golang will find it
COPY . ~/ttn-gateway
# Build the gateway
WORKDIR ~/ttn-gateway
RUN ls -la
RUN ./resin-install.sh
# Make sure we start up within the bin directory
WORKDIR /opt/ttn-gateway/bin
# Start it up
CMD ["sh", "-c", "./resin-run.sh"]