mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-06 04:59:18 -05:00
64 lines
2.0 KiB
Docker
64 lines
2.0 KiB
Docker
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
|
|
WORKDIR /app
|
|
|
|
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS build
|
|
ARG TARGETARCH
|
|
ARG BUILD_CONFIGURATION=Release
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
ENV MSBUILDDEBUGPATH=/src/msbuild-logs
|
|
WORKDIR /src
|
|
|
|
# Create the debug directory
|
|
RUN mkdir -p /src/msbuild-logs
|
|
|
|
# Install Python which is required by the WebAssembly tools
|
|
RUN apt-get update && apt-get install -y python3 && apt-get clean
|
|
|
|
# Install the WebAssembly tools with correct dotnet version auto-detected from apps/server folder.
|
|
WORKDIR /src/apps/server
|
|
RUN dotnet workload install wasm-tools
|
|
|
|
# Copy all project files
|
|
COPY apps/server /src
|
|
|
|
# Build the Client project
|
|
WORKDIR "/src/AliasVault.Client"
|
|
RUN dotnet build "AliasVault.Client.csproj" \
|
|
-c "$BUILD_CONFIGURATION" \
|
|
-o /app/build \
|
|
-a "$TARGETARCH"
|
|
|
|
# Publish the Client project
|
|
FROM build AS publish
|
|
ARG BUILD_CONFIGURATION=Release
|
|
ARG TARGETARCH
|
|
RUN dotnet publish "AliasVault.Client.csproj" \
|
|
-c "$BUILD_CONFIGURATION" \
|
|
-a "$TARGETARCH" \
|
|
--no-restore \
|
|
-o /app/publish \
|
|
/p:UseAppHost=false \
|
|
/p:WasmNativeStrip=false \
|
|
/p:EmccInitialHeapSize=268435456
|
|
|
|
# Final stage
|
|
FROM nginx:1.24.0 AS final
|
|
|
|
# OCI Image Labels
|
|
LABEL org.opencontainers.image.source="https://github.com/aliasvault/aliasvault"
|
|
LABEL org.opencontainers.image.vendor="AliasVault"
|
|
LABEL org.opencontainers.image.licenses="AGPL-3.0"
|
|
LABEL org.opencontainers.image.title="AliasVault Client"
|
|
LABEL org.opencontainers.image.description="Blazor WebAssembly client UI for AliasVault. Part of multi-container setup and can be deployed via install.sh (see docs.aliasvault.net)"
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY --from=publish /app/publish/wwwroot .
|
|
COPY /apps/server/AliasVault.Client/nginx.conf /etc/nginx/nginx.conf
|
|
COPY /apps/server/AliasVault.Client/entrypoint.sh /app/entrypoint.sh
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
EXPOSE 3000
|
|
ENV ASPNETCORE_URLS=http://+:3000
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|