Make a build heriarchy to reduce images size. Add Android Thing Build. Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com> Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
14 lines
258 B
Docker
14 lines
258 B
Docker
FROM mraa-base
|
|
|
|
# Update apt-get
|
|
RUN apt-get -y update && \
|
|
# Python 2 Build Dependencies
|
|
apt-get -y --no-install-recommends install python python-dev \
|
|
# Python 3 Build Dependencies
|
|
python3 python3-dev
|
|
|
|
# Set Workdir
|
|
WORKDIR $MRAA_SRC_DIR
|
|
|
|
CMD bash
|