diff --git a/Dockerfile b/Dockerfile index 9d8b4aa..a2982e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,7 @@ RUN dnf update -y && \ dnf install -y python3.12 python3-pip make git && \ dnf clean all -# Definir diretório de trabalho -WORKDIR /app - -# Copiar arquivos do projeto -COPY . . - +RUN ls # Instalar dependências Python RUN make install @@ -18,4 +13,4 @@ RUN make install EXPOSE 5000 # Comando para rodar a aplicação -CMD ["make", "run"] \ No newline at end of file +CMD ["make", "run"]