2021-01-02 16:03:11 +00:00
|
|
|
ARG IMAGESUFFIX
|
|
|
|
|
|
|
|
FROM --platform=$BUILDPLATFORM node:lts${IMAGESUFFIX} AS build-node
|
2020-04-08 17:32:53 +00:00
|
|
|
WORKDIR /app
|
|
|
|
COPY ASF-ui .
|
|
|
|
RUN echo "node: $(node --version)" && \
|
|
|
|
echo "npm: $(npm --version)" && \
|
|
|
|
npm ci && \
|
|
|
|
npm run deploy
|
|
|
|
|
2021-01-02 16:03:11 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:5.0${IMAGESUFFIX} AS build-dotnet
|
2020-06-13 15:05:26 +00:00
|
|
|
ARG STEAM_TOKEN_DUMPER_TOKEN
|
2021-01-02 13:49:03 +00:00
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETOS
|
2020-04-08 17:32:53 +00:00
|
|
|
ENV CONFIGURATION Release
|
2020-05-09 23:13:54 +00:00
|
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT 1
|
2020-09-28 19:46:17 +00:00
|
|
|
ENV DOTNET_NOLOGO 1
|
2020-11-10 22:22:57 +00:00
|
|
|
ENV NET_CORE_VERSION net5.0
|
2020-06-13 15:05:26 +00:00
|
|
|
ENV STEAM_TOKEN_DUMPER_NAME ArchiSteamFarm.OfficialPlugins.SteamTokenDumper
|
2020-04-08 17:32:53 +00:00
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=build-node /app/dist ASF-ui/dist
|
|
|
|
COPY ArchiSteamFarm ArchiSteamFarm
|
2020-06-13 15:05:26 +00:00
|
|
|
COPY ArchiSteamFarm.OfficialPlugins.SteamTokenDumper ArchiSteamFarm.OfficialPlugins.SteamTokenDumper
|
2020-05-04 22:14:36 +00:00
|
|
|
COPY resources resources
|
2020-05-24 09:03:44 +00:00
|
|
|
COPY Directory.Build.props Directory.Build.props
|
2020-04-08 17:32:53 +00:00
|
|
|
RUN dotnet --info && \
|
2021-01-02 13:49:03 +00:00
|
|
|
case "$TARGETOS" in \
|
|
|
|
"linux") ;; \
|
|
|
|
*) echo "ERROR: Unsupported OS: ${TARGETOS}"; exit 1 ;; \
|
|
|
|
esac && \
|
|
|
|
case "$TARGETARCH" in \
|
|
|
|
"amd64") asf_variant="${TARGETOS}-x64" ;; \
|
|
|
|
"arm") asf_variant="${TARGETOS}-${TARGETARCH}" ;; \
|
|
|
|
"arm64") asf_variant="${TARGETOS}-${TARGETARCH}" ;; \
|
|
|
|
*) echo "ERROR: Unsupported CPU architecture: ${TARGETARCH}"; exit 1 ;; \
|
|
|
|
esac && \
|
2020-04-08 17:32:53 +00:00
|
|
|
# TODO: Remove workaround for https://github.com/microsoft/msbuild/issues/3897 when it's no longer needed
|
|
|
|
if [ -f "ArchiSteamFarm/Localization/Strings.zh-CN.resx" ]; then ln -s "Strings.zh-CN.resx" "ArchiSteamFarm/Localization/Strings.zh-Hans.resx"; fi && \
|
|
|
|
if [ -f "ArchiSteamFarm/Localization/Strings.zh-TW.resx" ]; then ln -s "Strings.zh-TW.resx" "ArchiSteamFarm/Localization/Strings.zh-Hant.resx"; fi && \
|
2020-06-13 15:05:26 +00:00
|
|
|
if [ -n "${STEAM_TOKEN_DUMPER_TOKEN-}" ] && [ -f "${STEAM_TOKEN_DUMPER_NAME}/SharedInfo.cs" ]; then sed -i "s/STEAM_TOKEN_DUMPER_TOKEN/${STEAM_TOKEN_DUMPER_TOKEN}/g" "${STEAM_TOKEN_DUMPER_NAME}/SharedInfo.cs"; fi && \
|
2021-01-02 13:49:03 +00:00
|
|
|
dotnet publish "${STEAM_TOKEN_DUMPER_NAME}" -c "$CONFIGURATION" -f "$NET_CORE_VERSION" -o "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}" -p:SelfContained=false -p:UseAppHost=false -r "$asf_variant" --nologo && \
|
|
|
|
dotnet clean ArchiSteamFarm -c "$CONFIGURATION" -f "$NET_CORE_VERSION" -p:SelfContained=false -p:UseAppHost=false -r "$asf_variant" --nologo && \
|
|
|
|
dotnet publish ArchiSteamFarm -c "$CONFIGURATION" -f "$NET_CORE_VERSION" -o "out/result" -p:ASFVariant=docker -p:SelfContained=false -p:UseAppHost=false -r "$asf_variant" --nologo && \
|
2020-06-13 15:05:26 +00:00
|
|
|
if [ -d "ArchiSteamFarm/overlay/generic" ]; then cp "ArchiSteamFarm/overlay/generic/"* "out/result"; fi && \
|
2021-01-02 13:49:03 +00:00
|
|
|
if [ -d "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}" ]; then mkdir -p "out/result/plugins/${STEAM_TOKEN_DUMPER_NAME}"; cp -pR "out/${STEAM_TOKEN_DUMPER_NAME}/${NET_CORE_VERSION}/"* "out/result/plugins/${STEAM_TOKEN_DUMPER_NAME}"; fi
|
2020-04-08 17:32:53 +00:00
|
|
|
|
2021-01-02 16:03:11 +00:00
|
|
|
FROM --platform=$TARGETPLATFORM mcr.microsoft.com/dotnet/aspnet:5.0${IMAGESUFFIX} AS runtime
|
2020-04-08 17:32:53 +00:00
|
|
|
ENV ASPNETCORE_URLS=
|
2020-05-09 23:13:54 +00:00
|
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT 1
|
2020-09-28 19:46:17 +00:00
|
|
|
ENV DOTNET_NOLOGO 1
|
2021-01-02 17:33:16 +00:00
|
|
|
|
|
|
|
LABEL maintainer="JustArchi <JustArchi@JustArchi.net>" \
|
|
|
|
org.opencontainers.image.authors="JustArchi <JustArchi@JustArchi.net>" \
|
|
|
|
org.opencontainers.image.url="https://github.com/JustArchiNET/ArchiSteamFarm/wiki/Docker" \
|
|
|
|
org.opencontainers.image.documentation="https://github.com/JustArchiNET/ArchiSteamFarm/wiki" \
|
|
|
|
org.opencontainers.image.source="https://github.com/JustArchiNET/ArchiSteamFarm" \
|
|
|
|
org.opencontainers.image.vendor="JustArchiNET" \
|
|
|
|
org.opencontainers.image.licenses="Apache-2.0" \
|
|
|
|
org.opencontainers.image.title="ArchiSteamFarm" \
|
|
|
|
org.opencontainers.image.description="C# application with primary purpose of idling Steam cards from multiple accounts simultaneously"
|
|
|
|
|
2020-04-08 17:32:53 +00:00
|
|
|
EXPOSE 1242
|
|
|
|
WORKDIR /app
|
2020-06-13 15:05:26 +00:00
|
|
|
COPY --from=build-dotnet /app/out/result .
|
2020-06-13 23:51:50 +00:00
|
|
|
VOLUME ["/app/config", "/app/logs"]
|
2020-05-04 14:31:05 +00:00
|
|
|
HEALTHCHECK CMD ["pidof", "-q", "dotnet"]
|
2020-04-08 17:32:53 +00:00
|
|
|
ENTRYPOINT ["./ArchiSteamFarm.sh", "--no-restart", "--process-required", "--system-required"]
|