Created
March 5, 2017 17:18
-
-
Save mapk0y/315933e0b6a2d71cefe937433eeb5bd4 to your computer and use it in GitHub Desktop.
docker で xfce4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN set -ex \ | |
&& apt-get update \ | |
&& apt-get install -y --no-install-recommends xfce4 \ | |
&& apt-get clean \ | |
&& rm -rf /var/lib/apt/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DEBIAN_FRONTEND
を指定しない場合は以下のようなメッセージが出るがインストールは正常に完了する