mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 04:18:46 +00:00
This is caused by Docker bug 6345 which is already closed, but for some reason the problem still persists. Closes GH-181. Patch contributed by Michael Zedeler.
13 lines
243 B
Docker
13 lines
243 B
Docker
FROM ubuntu:16.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/fix_pam_bug.sh && \
|
|
/bd_build/cleanup.sh
|
|
|
|
CMD ["/sbin/my_init"]
|