uptime/Dockerfile

7 lines
95 B
Docker
Raw Normal View History

2024-12-15 02:53:26 -05:00
FROM oven/bun
COPY . /app
WORKDIR /app/
RUN bun install
RUN bun test
CMD bun run /app/index.ts