mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.6 KiB
74 lines
1.6 KiB
#
|
|
# Stage 1, Build Backend
|
|
#
|
|
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster as backend
|
|
|
|
ARG SQUIDEX__VERSION=4.0.0
|
|
|
|
WORKDIR /src
|
|
|
|
# Copy nuget project files.
|
|
COPY backend/*.sln ./
|
|
|
|
# Copy the main source project files
|
|
COPY backend/src/*/*.csproj ./
|
|
RUN for file in $(ls *.csproj); do mkdir -p src/${file%.*}/ && mv $file src/${file%.*}/; done
|
|
|
|
# Copy the test project files
|
|
COPY backend/tests/*/*.csproj ./
|
|
RUN for file in $(ls *.csproj); do mkdir -p tests/${file%.*}/ && mv $file tests/${file%.*}/; done
|
|
|
|
# Copy the extension project files
|
|
COPY backend/extensions/*/*.csproj ./
|
|
RUN for file in $(ls *.csproj); do mkdir -p extensions/${file%.*}/ && mv $file extensions/${file%.*}/; done
|
|
|
|
RUN dotnet restore
|
|
|
|
COPY backend .
|
|
|
|
# Test Backend
|
|
RUN dotnet test --no-restore --filter Category!=Dependencies
|
|
|
|
# Publish
|
|
RUN dotnet publish --no-restore src/Squidex/Squidex.csproj --output /build/ --configuration Release -p:version=$SQUIDEX__VERSION
|
|
|
|
|
|
#
|
|
# Stage 2, Build Frontend
|
|
#
|
|
FROM buildkite/puppeteer:latest as frontend
|
|
|
|
WORKDIR /src
|
|
|
|
# Copy Node project files.
|
|
COPY frontend/package*.json /tmp/
|
|
|
|
# Install Node packages
|
|
RUN cd /tmp && npm install --loglevel=error
|
|
|
|
COPY frontend .
|
|
|
|
# Build Frontend
|
|
RUN cp -a /tmp/node_modules . \
|
|
&& npm run test:coverage \
|
|
&& npm run build
|
|
|
|
RUN cp -a build /build/
|
|
|
|
|
|
#
|
|
# Stage 3, Build runtime
|
|
#
|
|
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim
|
|
|
|
# Default AspNetCore directory
|
|
WORKDIR /app
|
|
|
|
# Copy from build stages
|
|
COPY --from=backend /build/ .
|
|
COPY --from=frontend /build/ wwwroot/build/
|
|
|
|
EXPOSE 80
|
|
EXPOSE 11111
|
|
|
|
ENTRYPOINT ["dotnet", "Squidex.dll"]
|
|
|