From 207663c1766dab740f3c28b26e7ae1e161fdf15b Mon Sep 17 00:00:00 2001 From: Ray Ozzie Date: Fri, 22 Apr 2016 13:24:13 -0400 Subject: [PATCH] test --- Dockerfile | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 7f49101..0000000 --- a/Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -FROM resin/raspberrypi-buildpack-deps - -# Enable systemd, as Resin requires this -ENV INITSYSTEM on - -# Make the hardware type available as a runtime env var -run sh -c env -ENV RESIN_ARCHITECTURE $RESIN_ARCH -run sh -c env - -# 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 51 - -# 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"]