Build and tag Docker image
See original GitHub issueIssue Description
Tried running this action earlier, but using
steps:
- uses: actions/checkout@master
- uses: codecov/codecov-action@v1.0.2
with:
token: ${{secrets.CODECOV_TOKEN}} #required
file: ./coverage.xml #optional
flags: unittests #optional
name: codecov-umbrella #optional
it takes ages to build the Docker image.
What do you think about building and tagging an image, and then pushing it to Dockerhub?
This will significantly speed up actions!
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:5 (1 by maintainers)
Top Results From Across the Web
docker build - Docker Documentation
The docker build command builds Docker images from a Dockerfile and a “context”. A build's context is the set of files located in...
Read more >How to create named and latest tag in Docker? - Stack Overflow
Use: ID=$(docker build -q -t myrepo/myname:mytag . ) . The "-q" means only the ID is written to stdout. You should always specify...
Read more >Building, Tagging, & Pushing A Custom Docker Image
In this tutorial we're going to create a custom docker container with Python3, R, and Git ... The syntax to build and tag...
Read more >A Guide to Tag in Docker - Baeldung
The Docker tag helps maintain the build version to push the image to the Docker Hub. The Docker Hub allows us to group...
Read more >How To Create A Docker Windows Image With Docker Build Tag
To build a new image, use the docker build "tag" command. This command creates the image. For this article, you can see below...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi all,
As of version 1.0.4, we are no longer using Docker to support this action. It is instead entirely JavaScript based. We had lots of users who encountered similar issues with long and slow build times with our Docker action, so we made the jump to JS. This means significantly faster performance and no build times for Docker images + support for macOS and Windows builds 😃
Hope y’all like the change!
Ib
Ah, glad someone raised this. It is the only image in my CI process that isn’t pre-built, and thus takes quite a long time, slowing down my CI immeasurably. Any plans on building this and publishing?