question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Build and tag Docker image

See original GitHub issue

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:closed
  • Created 4 years ago
  • Reactions:4
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
ibrahim0814commented, Nov 19, 2019

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

0reactions
deitchcommented, Oct 3, 2019

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?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Hashnode Post

No results found