File size: 174 Bytes
25fadc1
20e53d7
4531b47
 
a605928
 
6aa6353
 
53bc6a8
4d889bc
88c9aa0
 
1dbe2ca
20e53d7
8321e4e
 
1033116
ed116a1
f88e141
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"]