File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
resource-management/test/resourceRegionMgrSimulator Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ # Download base image ubuntu 18.04
2+ FROM ubuntu:18.04
3+
4+ # LABEL about the custom image
5+ LABEL maintainer=
"carl Xie <[email protected] >" 6+ LABEL version="0.1"
7+ LABEL description="This is custom Docker Image for Resource Region Manager Simulator."
8+
9+ # Disable Prompt During Packages Installation
10+ ARG DEBIAN_FRONTEND=noninteractive
11+
12+ # Update Ubuntu Software repository
13+ RUN apt update
14+
15+ # Copy resourceRegionMgrSimulator and define default command for the container
16+ COPY resourceRegionMgrSimulator /usr/local/bin/resourceRegionMgrSimulator
17+ CMD ["/usr/local/bin/resourceRegionMgrSimulator" ]
18+
19+ # Expose Port for the Application
20+ EXPOSE 9119
21+
You can’t perform that action at this time.
0 commit comments