Skip to content

Commit

Permalink
Consertando a build do app A8
Browse files Browse the repository at this point in the history
  • Loading branch information
RayTdC authored and eduquintanilha committed Sep 25, 2024
1 parent 13a98dd commit 10be438
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM python:3
WORKDIR /app
ADD app/requirements.txt /app/requirements.txt
RUN apt-get update && apt-get -y install netcat && apt-get clean
# Consertando a build, instalando o pacote netcat-traditional ao invés de `netcat`
RUN apt-get update && apt-get -y install netcat-traditional && apt-get clean
RUN pip install -r requirements.txt
CMD python app.py

0 comments on commit 10be438

Please sign in to comment.