dockerfile to deploy streamlit and angular

This commit is contained in:
Tykayn 2025-10-09 16:28:34 +02:00 committed by tykayn
parent 5043596478
commit 2c53461b29
2065 changed files with 378781 additions and 46 deletions

View file

@ -0,0 +1,6 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { App } from './app/app';
bootstrapApplication(App, appConfig)
.catch((err) => console.error(err));