-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add building docker images for AMD64 and ARM64 (v8). To build locally run make dist. It uses fixed tag `1.0.0-devel` across all snapshot builds. ``` • docker images • building docker image image=saucelabs/forwarder:1.0.0-devel-amd64 • building docker image image=saucelabs/forwarder:1.0.0-devel-arm64 • took: 3s • storing release metadata • writing file=dist/artifacts.json • writing file=dist/metadata.json ``` Fixes #53
- Loading branch information
Showing
3 changed files
with
41 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM ubuntu:22.10 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends ca-certificates && \ | ||
apt-get clean && \ | ||
apt-get autoremove && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY forwarder /usr/bin/forwarder | ||
ENTRYPOINT ["/usr/bin/forwarder"] | ||
CMD ["proxy", "--api-address", ":10000"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters