Skip to content

Commit 2ee137b

Browse files
committed
Put Back in APP
1 parent dbc11ca commit 2ee137b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apk add --update ca-certificates python3
77
RUN pip3 install --no-cache-dir boto3 boto requests
88

99

10-
ADD ./ecs-get-port-mapping.py /
10+
ADD ./ecs-get-port-mapping.py /app
1111
ADD ./entrypoint.sh /
1212

1313
RUN chmod 755 /entrypoint.sh

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ECS-JAVA-EUREKA #
22

3-
Base image for ECS Aware Eueka Instances
3+
Base image for ECS Aware Eureka Instances
44

55
### What is this repository for? ###
66

Diff for: entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -o xtrace
77
case "$SPRING_PROFILES_ACTIVE" in
88
*ecs*)
99
echo "var Set, executing python script"
10-
result="$(python3 /ecs-get-port-mapping.py)"
10+
result="$(python3 /app/ecs-get-port-mapping.py)"
1111
eval "$result"
1212
ECS_HOST_PORT="$PORT_TCP_8080"
1313
export ECS_HOST_PORT;;

0 commit comments

Comments
 (0)