This commit is contained in:
Ray Ozzie 2016-03-22 15:49:00 -07:00
parent ad0e9a55b7
commit 0a303e1420

View File

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