RFE: Dockerfile to build from working directory
See original GitHub issueCurrently, the Dockerfile builds the Docker image after pulling the Etherpad codebase from Github:
I would find more convenient (and less surprising) if the Dockerfile built the Docker image from the code checked out in the local filesystem.
In practice, I suggest replacing the curl
call with (I simplify):
COPY ./ ./
Accidentally, this change would enable testing the Docker image as part of the CI jobs.
What do you think?
cc @muxator
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
RFE: dockerfile secret #1684 - containers/buildah - GitHub
Strange looking at this command line. docker build --no-cache --progress=plain --secret "id=gpg,src=$GPGKEY" -t tmp$$:1 . "$@ ...
Read more >Dockerfile reference - Docker Documentation
Docker can build images automatically by reading the instructions from a Dockerfile . A Dockerfile is a text document that contains all the...
Read more >RFE: Add support to build CDT projects in a Docker Container
User uses a special Build Settings page to select a Docker image to use for the current configuration. Indexing is supported by copying...
Read more >Build an Image - Specify Dockerfile Location · Codefresh | Docs
You could also change the Docker build context by editing the working_directory property. By default it is looking at the root folder of...
Read more >What is "/app" working directory for a Dockerfile?
There are two important directories when building a docker image: the build context directory. the WORKDIR directory.
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 FreeTop 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
Top GitHub Comments
I had a hard time force pushing on https://github.com/pierreprinetti/etherpad/tree/local_dockerfile in order to bring #3662 in (my bad).
Directly implemented the rewritten version in dc15f4a43c0e. Closing this.
I think I forgot to click a green button 😃 See if you see them now!