1
0
mirror of /repos/baseimage-docker.git synced 2026-02-27 17:41:59 +01:00

Initial commit

This commit is contained in:
Hongli Lai (Phusion)
2013-11-12 11:39:25 +01:00
commit 9661f84da9
16 changed files with 320 additions and 0 deletions

14
image/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM ubuntu:12.04
MAINTAINER Phusion <info@phusion.nl>
ENV HOME /root
RUN mkdir /build
ADD . /build
RUN /build/prepare.sh && \
/build/system_services.sh && \
/build/utilities.sh && \
/build/cleanup.sh
CMD ["/sbin/my_init"]
EXPOSE 22 80 443