Skip to content

Instantly share code, notes, and snippets.

@jarifibrahim
Created February 16, 2018 09:02
Show Gist options
  • Save jarifibrahim/7c46b507a6e2b10510b82d655d3967f7 to your computer and use it in GitHub Desktop.
Save jarifibrahim/7c46b507a6e2b10510b82d655d3967f7 to your computer and use it in GitHub Desktop.
Planner test dockerfile
FROM centos:7
ENV LANG=en_US.utf8
RUN curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
RUN yum -y install nodejs gcc-c++ make git wget
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
RUN yum -y install ./google-chrome-stable_current_*.rpm
RUN git clone https://github.com/fabric8-ui/fabric8-planner.git
RUN cd fabric8-planner
ENTRYPOINT ["/bin/bash"]
@jarifibrahim
Copy link
Author

How to build - docker build -t planner-test-build -f planner-dockerfile .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment