This commit is contained in:
Ray Ozzie
2016-03-22 15:55:59 -07:00
parent 0a303e1420
commit 03ae366108
2 changed files with 3 additions and 7 deletions

View File

@ -3,15 +3,14 @@ FROM resin/raspberrypi-buildpack-deps
# Enable systemd
ENV INITSYSTEM on
# Copy the installer
COPY . ~/ttn-gateway
# Build the gateway
WORKDIR ~/ttn-gateway
COPY resin-install.sh .
RUN ./resin-install.sh
# Make sure we start up within the bin directory
WORKDIR /opt/ttn-gateway/bin
COPY resin-run.sh .
# Start it up
CMD ["sh", "-c", "./resin-run.sh"]