Update readme.md

Fixed "unknown flag: --build-arg" by reordering arguments behind build command.
This commit is contained in:
Timon Fiddike
2025-12-27 21:54:19 +01:00
committed by GitHub
parent 440ba8581e
commit f46407dba2
+2 -2
View File
@@ -95,9 +95,9 @@ yarn run build
```bash
docker build -t astroplate .
# or
# docker --build-arg INSTALLER=npm build -t astroplate .
# docker build --build-arg INSTALLER=npm -t astroplate .
# or
# docker --build-arg INSTALLER=pnpm build -t astroplate .
# docker build --build-arg INSTALLER=pnpm -t astroplate .
docker run -p 3000:80 astroplate
# or