mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-05-24 14:33:26 +00:00
use correct framework (#193)
* use correct framework * use correct framework
This commit is contained in:
parent
3c703f517d
commit
12da7d7249
|
@ -1,7 +1,7 @@
|
||||||
ARG BITWARDEN_TAG
|
ARG BITWARDEN_TAG
|
||||||
FROM ${BITWARDEN_TAG}
|
FROM ${BITWARDEN_TAG}
|
||||||
|
|
||||||
COPY bin/Release/netcoreapp8.0/publish/* /bitBetter/
|
COPY bin/Release/net8.0/publish/* /bitBetter/
|
||||||
COPY ./.keys/cert.cert /newLicensing.cer
|
COPY ./.keys/cert.cert /newLicensing.cer
|
||||||
|
|
||||||
RUN set -e; set -x; \
|
RUN set -e; set -x; \
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -12,6 +12,6 @@ RUN set -e; set -x; \
|
||||||
|
|
||||||
FROM bitbetter/api
|
FROM bitbetter/api
|
||||||
|
|
||||||
COPY --from=build /licenseGen/bin/Release/netcoreapp8.0/publish/* /app/
|
COPY --from=build /licenseGen/bin/Release/net8.0/publish/* /app/
|
||||||
|
|
||||||
ENTRYPOINT [ "dotnet", "/app/licenseGen.dll", "--core", "/app/Core.dll", "--cert", "/cert.pfx" ]
|
ENTRYPOINT [ "dotnet", "/app/licenseGen.dll", "--core", "/app/Core.dll", "--cert", "/cert.pfx" ]
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user