-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Dockerfile #2
base: master
Are you sure you want to change the base?
Conversation
Nice work, you committed a ENTRYPOINT ["/entrypoint.sh"] The Step 2: Add an entrypoint scriptAn entrypoint script must exist in our repository so that Docker has something to execute. ⌨️ Activity: Add an entrypoint script and commit it to your branch
I'll respond when I detect a new commit on this branch. |
Nice work adding the In Next, we'll define a workflow that uses the GitHub Action. action.ymlAll actions require a metadata file that uses YAML syntax. The data in the metadata file defines the Step 3: Add an action metadata fileWe will use an ⌨️ Activity: Create action.yml
I'll respond when I detect a new commit on this branch. |
Next, we'll define a workflow that uses the GitHub Action. Workflow FilesWorkflows are defined in special files in the Workflows can execute based on your chosen event. For this lab, we'll be using the We'll break down each line of the workflow in the next step. Step 4: Start your workflow fileFirst, we'll add the structure of the workflow. ⌨️ Activity: Name and trigger your workflow
Trouble pushing? Click here.The It is possible that you are using an integration (like GitHub Desktop or any other tool that authenticates as you and pushes on your behalf) if you receive a message like the one below: To https://github.com/your-username/your-repo.git
! [remote rejected] your-branch -> your-branch (refusing to allow an integration to update main.yml)
error: failed to push some refs to 'https://github.com/your-username/your-repo.git' I'll respond when I detect a new commit on this branch. |
No description provided.