diff --git a/.dockerignore b/.dockerignore index 58854f7..354d064 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,4 +4,5 @@ .gitignore LearningOutcomesGenerator/bin/ LearningOutcomesGenerator/obj/ -LearningOutcomesGenerator/node_modules/ \ No newline at end of file +LearningOutcomesGenerator/node_modules/ +LearningOutcomesGenerator/wwwroot/css/output.css \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 8a23c2d..4b318eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ COPY . . WORKDIR "/app/LearningOutcomesGenerator" RUN npm install +RUN npm run tailwind-build RUN dotnet publish "LearningOutcomesGenerator.csproj" -c Release -o /app/publish