Fix Dockerfile.cache glibc version
Build and Publish Docker Container / build (push) Successful in 14m11s

This commit is contained in:
2024-06-03 20:14:41 +01:00
parent f344d69419
commit b37273cfbe
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ enum Commands {
down: bool,
},
Run {
Serve {
/// If we should perform migration on startup.
#[clap(short, long, env, default_value_t = true)]
migrate: bool,
@@ -82,7 +82,7 @@ async fn main() -> anyhow::Result<()> {
}
}
Commands::Run { migrate, addr } => {
Commands::Serve { migrate, addr } => {
if migrate {
Migrator::up(&connection, None).await?;
}