Skip to content

Commit

Permalink
fix: dockerfile copy
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaquiery committed Jul 12, 2024
1 parent f6499bc commit e2ec669
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM python:3.12-bookworm
RUN apt-get update && apt-get install -y docker.io

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

WORKDIR /action

Expand Down
1 change: 1 addition & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ time=$(date)
echo "time=$time" >> "$GITHUB_OUTPUT"

python -e "print('Hello from Python, too!')"
pwd

0 comments on commit e2ec669

Please sign in to comment.