Skip to content

Commit 26f6ad2

Browse files
Update Dockerfile
Add -y to apt commands so the confirmation prompts don't break it.
1 parent 80606f3 commit 26f6ad2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM tensorflow/tensorflow:2.19.0
22

3-
RUN apt update
4-
RUN apt upgrade
5-
RUN apt install git
3+
RUN apt update -y
4+
RUN apt upgrade -y
5+
RUN apt install git -y
66

77
WORKDIR /app
88

0 commit comments

Comments
 (0)