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.
22 lines
527 B
22 lines
527 B
FROM squidex/dotnet:2.2-sdk-chromium-phantomjs-node as builder
|
|
|
|
WORKDIR /src
|
|
|
|
COPY src/Squidex/package*.json /tmp/
|
|
|
|
# Install Node packages
|
|
RUN cd /tmp && npm install --loglevel=error
|
|
|
|
COPY . .
|
|
|
|
# Build Frontend
|
|
RUN cp -a /tmp/node_modules src/Squidex/ \
|
|
&& cd src/Squidex \
|
|
&& npm run test:coverage \
|
|
&& npm run build
|
|
|
|
# Test Backend
|
|
RUN dotnet restore && dotnet test -s ../../.testrunsettings --filter Category!=Dependencies
|
|
|
|
# Publish
|
|
RUN dotnet publish src/Squidex/Squidex.csproj --output /out/ --configuration Release
|