We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88528ee commit e42ffffCopy full SHA for e42ffff
2 files changed
Dockerfile
@@ -30,6 +30,8 @@ RUN dotnet build "MyApp.csproj" -c Release -o /app/build
30
31
FROM build AS publish
32
RUN dotnet publish "MyApp.csproj" -c Release -o /app/publish /p:UseAppHost=false /p:PublishProfile=""
33
+# Install npm packages
34
+RUN cd /app/publish && bun install
35
36
FROM base AS final
37
WORKDIR /app
MyApp/package.json
@@ -1,6 +1,5 @@
1
{
2
"scripts": {
3
- "postinstall": "node postinstall.js && npm run migrate",
4
"dtos": "x mjs",
5
"dev": "dotnet watch",
6
"ui:dev": "tailwindcss -i ./tailwind.input.css -o ./wwwroot/css/app.css --watch",
0 commit comments