This website requires JavaScript.
Explore
Help
Register
Sign In
go
/
goreleaser
Watch
1
Star
0
Fork
0
You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced
2025-02-09 13:36:56 +02:00
Code
Issues
Releases
Activity
goreleaser
/
internal
/
pipe
/
docker
/
testdata
/
Dockerfile.multiple
4 lines
61 B
Docker
Raw
Normal View
History
Unescape
Escape
feat: support multiple binaries on docker (#919) * feat: support multiple binaries on docker * test: docker: fixed to use binaries * refactor: several docker pipe improvements * fix: tag templates * test: fix defaults test * fix: breaking: remove .Binary, .Os, .Arch support from docker image_templates * fix: lint issues
2019-01-11 16:27:39 -02:00
FROM
scratch
ADD
mybin /
ADD
anotherbin /
fix: docker respects builds binary file paths (#4218) <!-- Hi, thanks for contributing! Please make sure you read our CONTRIBUTING guide. Also, add tests and the respective documentation changes as well. --> `docker` packaging does not honor the path structure defined in builds/binary it copies all binaries to temp docker build folder this PR fixes the behavior and make it same as `archive` for example ``` builds: - id: xxx binary: plugins/xxx ``` before: ``` /tmp/goreleaserdocker2210262014/xxx ``` after: ``` /tmp/goreleaserdocker2210262014/plugins/xxx ``` <!-- If applied, this commit will... --> <!-- Why is this change being made? --> <!-- # Provide links to any relevant tickets, URLs or other resources -->
2023-08-03 05:19:07 -07:00
ADD
subdir/subbin /
Reference in New Issue
Copy Permalink