Skip to content

Commit

Permalink
Fix Dockerfile getting stuck on apt upgrade without -y
Browse files Browse the repository at this point in the history
  • Loading branch information
senpro-ingwersenk committed Nov 10, 2023
1 parent 627b2fa commit 6aec537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM mariadb:11.1.2

RUN apt update && apt upgrade && apt install -y odbc-mariadb && rm -rf /var/lib/apt/lists/*
RUN apt update && apt upgrade -y && apt install -y odbc-mariadb && rm -rf /var/lib/apt/lists/*

0 comments on commit 6aec537

Please sign in to comment.