instant-smollm / Dockerfile
cfahlgren1's picture
cfahlgren1 HF staff
add readme and dockerfile
fdab00f
raw
history blame
No virus
209 Bytes
FROM oven/bun:1
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
EXPOSE 4173
CMD ["bun", "run", "preview", "--host", "0.0.0.0", "--port", "4173"]