@daltux caso estivesse falando do código fonte:
```
git clone --depth 1 https://github.com/enafore/enafore.git .
cat << EOF > Dockerfile
FROM node:20-alpine AS builder
WORKDIR /app
COPY . /app
RUN apk add git && corepack enable && pnpm install --frozen-lockfile && pnpm build
FROM lipanski/docker-static-website:latest AS runner
COPY --from=builder /app/__sapper__/export .
EOF
docker build -t enafore .
```