Skip to content

Commit

Permalink
update entrypoint filename
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffav authored Mar 5, 2021
1 parent 85482ef commit a7c6094
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
FROM ubuntu:latest

# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entry.sh /entry.sh
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entry.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit a7c6094

Please sign in to comment.