From cf22fc94aaa7032bec753fd07d0b83ded067dded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Lu=C3=ADs?= Date: Mon, 17 Jul 2017 17:36:23 +0000 Subject: Added support for Docker. --- Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..166ecc4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +# phusion +FROM phusion/baseimage:0.9.22 + +# Use baseimage-docker's init system. +CMD ["/sbin/my_init"] + +# Set Env +ENV DEBIAN_FRONTEND noninteractive +ENV path /launchpad-pro + +# Set the working directory +WORKDIR ${path} + +# Copy the current directory contents into the container at ${path} +#ADD . ${path} + +# Distro management +RUN apt-get update && apt-get install -y build-essential gcc-arm-none-eabi && \ + apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +# Run shell +CMD ["/bin/bash"] \ No newline at end of file -- cgit v1.2.1