We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a075d56 + c406d3e commit 5be384bCopy full SHA for 5be384b
Dockerfile
@@ -1,14 +1,13 @@
1
FROM alpine:3.13
2
3
-# Install packges needed
+# Install required packages
4
RUN apk --no-cache add ca-certificates curl bash jq py3-pip && \
5
pip install awscli
6
7
-COPY ecs-deploy /ecs-deploy
8
-RUN chmod a+x /ecs-deploy
+COPY ecs-deploy /usr/local/bin/ecs-deploy
+RUN ln -s /usr/local/bin/ecs-deploy /ecs-deploy
9
10
COPY test.bats /test.bats
11
COPY run-tests.sh /run-tests.sh
12
-RUN chmod a+x /run-tests.sh
13
14
-ENTRYPOINT ["/ecs-deploy"]
+ENTRYPOINT ["ecs-deploy"]
0 commit comments