Skip to content

fix dockerfile

fix dockerfile #56

Workflow file for this run

name: pull_request check
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.x
global-json-file: global.json
- name: docker build
run: docker build -f src/test/NetCorePlal.Web/Dockerfile -t web:web .
- name: docker build
run: docker run web:web
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test # --verbosity normal