7 lines
99 B
Docker
7 lines
99 B
Docker
FROM debian:bookworm-slim
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN bash ./install.sh
|
|
CMD bash /app/file-o-bot
|