Update Dockerfile

This commit is contained in:
Levy Sant'Anna
2025-04-04 17:30:43 -03:00
committed by GitHub
parent d931fb4b5e
commit 0635003485

View File

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