Compare commits

...

2 commits

Author SHA1 Message Date
831bf71977
feat: Explicitly set port 2024-11-10 18:27:41 -08:00
86fa761191
fix: bin -> bun 2024-11-10 18:27:22 -08:00

View file

@ -1,5 +1,5 @@
# https://bun.sh/guides/ecosystem/docker
FROM oven/bin:1.1.19 AS base
FROM oven/bun:1.1.19 AS base
# Install dependencies into the temp directory
# Install, excluding devDeps
@ -16,4 +16,4 @@ COPY . .
# Run the app.
USER bun
ENTRYPOINT ["bunx", "@11ty/eleventy" "--serve"]
ENTRYPOINT ["bunx", "@11ty/eleventy", "--port", "6969", "--serve"]