Skip to content

Commit

Permalink
Fix git builder test that assumed alpine
Browse files Browse the repository at this point in the history
-------------
MOE_MIGRATED_REVID=146237925
APPROVED=
  • Loading branch information
imjasonh committed Feb 1, 2017
1 parent 5481146 commit 82e2f94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions git/examples/version-file/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM gcr.io/cloud-builders/git

ADD write_version.ash /write_version.ash
ADD write_version.bash /write_version.bash

RUN chmod +x /write_version.ash
RUN chmod +x /write_version.bash

ENTRYPOINT ["/write_version.ash"]
ENTRYPOINT ["/write_version.bash"]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/ash
#!/bin/bash
echo $(git rev-parse HEAD) > $1

0 comments on commit 82e2f94

Please sign in to comment.