mirror of
/repos/baseimage-docker.git
synced 2025-12-31 08:11:29 +01:00
14 lines
245 B
Docker
14 lines
245 B
Docker
# FROM ubuntu:14.04
|
|
FROM resin/rpi-raspbian:wheezy
|
|
MAINTAINER Phusion <info@phusion.nl>
|
|
|
|
ENV HOME /root
|
|
ADD . /build
|
|
|
|
RUN /build/prepare.sh && \
|
|
/build/system_services.sh && \
|
|
/build/utilities.sh && \
|
|
/build/cleanup.sh
|
|
|
|
CMD ["/sbin/my_init"]
|