-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to net8 * WiX upgrade to 3.14
- Loading branch information
Showing
30 changed files
with
109 additions
and
130 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
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:6.0 as publish | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0 as publish | ||
|
||
# ENV http_proxy=http://proxy.corporation.example:8080 | ||
# ENV https_proxy=http://proxy.corporation.example:8080 | ||
COPY . /azure-relay-bridge/ | ||
WORKDIR /azure-relay-bridge/src/azbridge | ||
RUN dotnet publish azbridge.csproj -c Release -f net6.0 -p:SelfContained=false -r ubuntu-x64 -p:PublishTrimmed=false -o /app | ||
RUN dotnet publish azbridge.csproj -c Release -f net8.0 -p:SelfContained=false -r linux-x64 -p:PublishTrimmed=false -o /app | ||
|
||
FROM mcr.microsoft.com/dotnet/runtime:6.0 | ||
ARG REVISION=0.6.0 | ||
ARG VERSION=0.6 | ||
FROM mcr.microsoft.com/dotnet/runtime:8.0 | ||
ARG REVISION=0.9.0 | ||
ARG VERSION=0.9 | ||
LABEL org.opencontainers.image.documentation="https://github.com/Azure/azure-relay-bridge/blob/master/README.md" | ||
LABEL org.opencontainers.image.source="https://github.com/Azure/azure-relay-bridge" | ||
LABEL org.opencontainers.image.url="https://github.com/Azure/azure-relay-bridge" | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
LABEL org.opencontainers.image.title="Microsoft Azure Relay Bridge" | ||
LABEL org.opencontainers.image.description="CLI tool to create TCP, UDP, Sockets, and HTTP tunnels via proxies and firewalls using the Azure Relay service." | ||
LABEL org.opencontainers.image.base.name="mcr.microsoft.com/dotnet/runtime:6.0" | ||
LABEL org.opencontainers.image.base.name="mcr.microsoft.com/dotnet/runtime:8.0" | ||
LABEL org.opencontainers.image.revision=${REVISION} | ||
LABEL org.opencontainers.image.revision=${VERSION} | ||
WORKDIR /app | ||
|
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
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
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
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
Oops, something went wrong.