20 lines
528 B
Docker
20 lines
528 B
Docker
FROM resin/raspberrypi-buildpack-deps
|
|
|
|
# Enable systemd, as Resin requires this
|
|
ENV INITSYSTEM on
|
|
|
|
# Version number of gateway software.
|
|
# (Incrementing this simply forces Docker to flush its cache
|
|
# and thus forces a full rebuild. Not used outside of Dockerfile.)
|
|
ENV TTN_GATEWAY_SOFTWARE 50
|
|
|
|
# Copy the build and run environment
|
|
COPY . /opt/ttn-gateway/
|
|
WORKDIR /opt/ttn-gateway/
|
|
|
|
# Build the gateway (or comment this out if debugging on-device)
|
|
RUN ./dev/build.sh && rm -rf ./dev
|
|
|
|
# Start it up
|
|
CMD ["sh", "-c", "./run.sh"]
|