Skip to content
This repository was archived by the owner on Jan 17, 2023. It is now read-only.

Commit aa59726

Browse files
committed
initial
0 parents  commit aa59726

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.swp

Diff for: Dockerfile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM php:7.2-cli-alpine3.7
2+
3+
MAINTAINER innovatorjapan <[email protected]>
4+
5+
ARG version=1.14.69
6+
7+
RUN apk -v --update add jq python py-pip ca-certificates \
8+
&& pip install awscli==${version} \
9+
&& apk -v --purge del py-pip \
10+
&& rm -rf /var/cache/apk/*
11+
12+
ADD deployer.phar /usr/local/bin/dep
13+
14+
RUN chmod +x /usr/local/bin/dep
15+
16+
CMD ["/bin/sh"]

Diff for: README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# aws-deployer
2+
3+
PHP deployer with aws-cli
4+
5+
-> designed to deply with circleci 2.0
6+

Diff for: deployer.phar

336 KB
Binary file not shown.

0 commit comments

Comments
 (0)