From 684057a2c57943d75dd442a343dd1bb61eeb7f06 Mon Sep 17 00:00:00 2001 From: starnakin Date: Tue, 10 Oct 2023 14:04:23 +0000 Subject: [PATCH] fix: dockerfile get . file --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 797d41a..98be48a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,9 @@ RUN yes y | apt install libopus0 RUN wget -O dpp.deb https://dl.dpp.dev/ RUN dpkg -i dpp.deb -RUN git clone https://git.chauvet.pro/starnakin/PyMenuBOT /app +RUN mkdir /app + +COPY . /app WORKDIR /app