Portfolio / Dockerfile
MrNoOne07's picture
Initial commit - Manoj Guttikonda portfolio
046198b
Raw
History Blame
226 Bytes
FROM oven/bun:1-slim
WORKDIR /app
COPY package.json bun.lock bunfig.toml ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
EXPOSE 7860
ENV PORT=7860
ENV HOST=0.0.0.0
CMD ["node", ".output/server/index.mjs"]