Skip to content

Commit 5f19b08

Browse files
author
Ubuntu
committed
resourceRegionMgrSimulator Containerization
1 parent 3d9f14b commit 5f19b08

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
Binary file not shown.

0 commit comments

Comments
 (0)