Elizabeth Hunt
4fd40b1f9d
All checks were successful
continuous-integration/drone/push Build is passing
7 lines
95 B
Docker
7 lines
95 B
Docker
FROM oven/bun
|
|
COPY . /app
|
|
WORKDIR /app/
|
|
RUN bun install
|
|
RUN bun test
|
|
CMD bun run /app/index.ts
|