mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 04:18:46 +00:00
15 lines
246 B
Docker
15 lines
246 B
Docker
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
|