summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 8dd59301298672edabde641c06285cef20bbb7ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# phusion
FROM phusion/baseimage:0.11

# 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"]