如何使用Rhel创建Dockerfile文件

时间:2019-01-28 11:12:04

标签: java dockerfile rhel7

我正在使用rhel7创建Google Cloud VM,并在尝试使用dockerfile映像而不是docker构建docker映像之后安装docker。

FROM rhel
RUN yum update -y
yum install -y \
   java-1.8.0-openjdk \
   java-1.8.0-openjdk-devel
ENV JAVA_HOME /etc/alternatives/jre

守护程序的错误响应:未知指令:。

1 个答案:

答案 0 :(得分:0)

您可以使用

FROM registry.access.redhat.com/rhel7/rhel
MAINTAINER John W. Jones <jjones@example.com>
# Add Web server, update image, and clear cache
RUN yum -y install httpd && yum -y update; yum clean all
# Add some data to web server
RUN echo "This Web server is working." > /var/www/html/index.html
EXPOSE 80
ENTRYPOINT [ "/usr/sbin/httpd" ]
CMD [ "-D", "FOREGROUND" ]

ref。)