Skip to content

Commit

Permalink
Merge pull request #275 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 3.10.9 - move the script into the PATH
  • Loading branch information
briskt authored May 2, 2023
2 parents 1c83099 + 580f477 commit fe96d40
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
FROM alpine:3.13

# Install packges needed
# Install required packages
RUN apk --no-cache add ca-certificates curl bash jq py3-pip && \
pip install awscli

COPY ecs-deploy /ecs-deploy
RUN chmod a+x /ecs-deploy
COPY ecs-deploy /usr/local/bin/ecs-deploy
RUN chmod a+x /usr/local/bin/ecs-deploy
RUN ln -s /usr/local/bin/ecs-deploy /ecs-deploy

COPY test.bats /test.bats
COPY run-tests.sh /run-tests.sh
RUN chmod a+x /run-tests.sh

ENTRYPOINT ["/ecs-deploy"]
ENTRYPOINT ["ecs-deploy"]

0 comments on commit fe96d40

Please sign in to comment.