profilePage/Dockerfile
creations 4525442251
Some checks failed
Build & Release Bun App / release (push) Failing after 4s
testing forg runners
2025-04-10 05:40:25 -04:00

13 lines
215 B
Docker

FROM oven/bun:latest
WORKDIR /app
COPY package.json ./
RUN test -f bun.lockb && cp bun.lockb . || true
RUN [ -f bun.lockb ] && bun install --frozen-lockfile || bun install
COPY . .
CMD ["bun", "run", "start"]