-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move dockerfiles from legacy KV format
- Loading branch information
Showing
2 changed files
with
14 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,9 @@ FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0${IMAGESUFFIX} AS | |
ARG CONFIGURATION=Release | ||
ARG TARGETARCH | ||
ARG TARGETOS | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT true | ||
ENV DOTNET_NOLOGO true | ||
ENV PLUGINS_BUNDLED ArchiSteamFarm.OfficialPlugins.ItemsMatcher ArchiSteamFarm.OfficialPlugins.MobileAuthenticator ArchiSteamFarm.OfficialPlugins.SteamTokenDumper | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true | ||
ENV DOTNET_NOLOGO=true | ||
ENV PLUGINS_BUNDLED=ArchiSteamFarm.OfficialPlugins.ItemsMatcher ArchiSteamFarm.OfficialPlugins.MobileAuthenticator ArchiSteamFarm.OfficialPlugins.SteamTokenDumper | ||
WORKDIR /app | ||
COPY --from=build-node /app/ASF-ui/dist ASF-ui/dist | ||
COPY ArchiSteamFarm ArchiSteamFarm | ||
|
@@ -77,11 +77,11 @@ RUN --mount=type=secret,id=ASF_PRIVATE_SNK --mount=type=secret,id=STEAM_TOKEN_DU | |
EOF | ||
|
||
FROM --platform=$TARGETPLATFORM mcr.microsoft.com/dotnet/aspnet:8.0${IMAGESUFFIX} AS runtime | ||
ENV ASF_PATH /app | ||
ENV ASF_USER asf | ||
ENV ASF_PATH=/app | ||
ENV ASF_USER=asf | ||
ENV ASPNETCORE_URLS= | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT true | ||
ENV DOTNET_NOLOGO true | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true | ||
ENV DOTNET_NOLOGO=true | ||
|
||
LABEL maintainer="JustArchi <[email protected]>" \ | ||
org.opencontainers.image.authors="JustArchi <[email protected]>" \ | ||
|
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 |
---|---|---|
|
@@ -19,9 +19,9 @@ FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0${IMAGESUFFIX} AS | |
ARG CONFIGURATION=Release | ||
ARG TARGETARCH | ||
ARG TARGETOS | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT true | ||
ENV DOTNET_NOLOGO true | ||
ENV PLUGINS_BUNDLED ArchiSteamFarm.OfficialPlugins.ItemsMatcher ArchiSteamFarm.OfficialPlugins.MobileAuthenticator ArchiSteamFarm.OfficialPlugins.SteamTokenDumper | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true | ||
ENV DOTNET_NOLOGO=true | ||
ENV PLUGINS_BUNDLED=ArchiSteamFarm.OfficialPlugins.ItemsMatcher ArchiSteamFarm.OfficialPlugins.MobileAuthenticator ArchiSteamFarm.OfficialPlugins.SteamTokenDumper | ||
WORKDIR /app | ||
COPY --from=build-node /app/ASF-ui/dist ASF-ui/dist | ||
COPY ArchiSteamFarm ArchiSteamFarm | ||
|
@@ -77,11 +77,11 @@ RUN --mount=type=secret,id=ASF_PRIVATE_SNK --mount=type=secret,id=STEAM_TOKEN_DU | |
EOF | ||
|
||
FROM --platform=$TARGETPLATFORM mcr.microsoft.com/dotnet/runtime-deps:8.0${IMAGESUFFIX} AS runtime | ||
ENV ASF_PATH /app | ||
ENV ASF_USER asf | ||
ENV ASF_PATH=/app | ||
ENV ASF_USER=asf | ||
ENV ASPNETCORE_URLS= | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT true | ||
ENV DOTNET_NOLOGO true | ||
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true | ||
ENV DOTNET_NOLOGO=true | ||
|
||
LABEL maintainer="JustArchi <[email protected]>" \ | ||
org.opencontainers.image.authors="JustArchi <[email protected]>" \ | ||
|