Skip to content

Commit

Permalink
add Dockerfile to test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Saibo-creator authored Sep 24, 2023
1 parent 8454202 commit 61447f9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Container image that runs your code
FROM alpine:3.10

# Copies your code file from your action repository to the filesystem path `/` of the container
COPY docker/entrypoint.sh /entrypoint.sh

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

0 comments on commit 61447f9

Please sign in to comment.