1
0
mirror of https://github.com/phusion/baseimage-docker.git synced 2026-03-25 20:07:55 +00:00
Files
baseimage-docker/image/Dockerfile
Hongli Lai (Phusion) f57320388c Get rid of default HOME environment variable
Closes GH-231.
2015-07-15 14:36:10 +02:00

12 lines
212 B
Docker

FROM ubuntu:14.04
MAINTAINER Phusion <info@phusion.nl>
ADD . /bd_build
RUN /bd_build/prepare.sh && \
/bd_build/system_services.sh && \
/bd_build/utilities.sh && \
/bd_build/cleanup.sh
CMD ["/sbin/my_init"]