cicd / Dockerfile
plsgivemeachane
LOL IDK
f88e141
raw
history blame contribute delete
No virus
174 Bytes
FROM oven/bun:1.1.12-debian
WORKDIR /code
COPY . .
RUN apt update
RUN apt install tree -y
RUN tree
WORKDIR /code/app
RUN ls
RUN bun install
CMD ["bun", "run", "dev"]