Files
MistoxCom-Angular/Dockerfile
T
derek f9cfd204bf
Docker Build and Release Upload / build (push) Has been cancelled
improve for bin/sh
2025-07-10 18:25:51 -07:00

75 lines
1.7 KiB
Docker
Executable File

######################
## Build Frontend ##
######################
FROM node:alpine AS build-frontend
WORKDIR /src
# Define base address
ARG BASE_URL=/
# Install the angular CLI
RUN npm install -g @angular/cli
# Copy the package.json into this build step
COPY ./src/MistoxWebsite.Client/package.json ./
# Pull dependencies
RUN npm install
# Copy the rest of the frontend over
COPY ./src/MistoxWebsite.Client/ ./
# Compile the source
RUN ng build --base-href=${BASE_URL}
#####################
## Build Backend ##
#####################
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS build-backend
WORKDIR /src
# Copy the csproj
COPY ./src/MistoxWebsite.Server/MistoxWebsite.Server.csproj ./
# Restore the Server
RUN dotnet restore './MistoxWebsite.Server.csproj'
# Copy the rest of the backend over
COPY ./src/MistoxWebsite.Server/ ./
# Get the target arch
ARG TARGETOS TARGETARCH
# Build the source
RUN set -e && \
if [ "$TARGETARCH" = "arm64" ]; then RID="arm64"; \
elif [ "$TARGETARCH" = "amd64" ]; then RID="x64"; \
else echo "Unsupported ARCH: $TARGETARCH"; exit 1; \
fi && \
dotnet publish './MistoxWebsite.Server.csproj' -c Release -r linux-$RID -o /app/publish
################
## Publish ##
################
FROM mcr.microsoft.com/dotnet/aspnet:9.0
WORKDIR /app
ENV ASPNETCORE_HTTP_PORTS=5000
ENV StripeKey=null
ENV MySQLServer=null
ENV MySQLUser=null
ENV MySQLPass=null
ENV MySQLDatabase=Mistox
EXPOSE 5000
# Copy in the server
COPY --from=build-backend /app/publish ./
# Copy in the client
COPY --from=build-frontend /debug/wwwroot ./wwwroot/
ENTRYPOINT ["dotnet", "MistoxWebsite.Server.dll", "--url", "http://localhost:5000"]