1
0
mirror of https://github.com/phusion/baseimage-docker.git synced 2026-03-26 20:38:58 +00:00
Files
baseimage-docker/image/Dockerfile
Travis Rowland 5493db5179 Update Dockerfile
2018-08-15 23:54:56 -07:00

17 lines
323 B
Docker

FROM ubuntu:18.04
MAINTAINER Phusion <info@phusion.nl>
COPY . /bd_build
RUN /bd_build/prepare.sh && \
/bd_build/system_services.sh && \
/bd_build/utilities.sh && \
/bd_build/cleanup.sh
ENV DEBIAN_FRONTEND="teletype" \
LANG="en_US.UTF-8" \
LANGUAGE="en_US:en" \
LC_ALL="en_US.UTF-8"
CMD ["/sbin/my_init"]