Skip to content
Snippets Groups Projects
Unverified Commit 09d6f70b authored by Vieno Hakkerinen's avatar Vieno Hakkerinen
Browse files

contrib/Dockerfile: use apt-get instead of apt

* apt is meant for user interactive usage. apt does not guarantee a stable CLI.
* set DEBIAN_FRONTEND=noninteractive to tell apt-get that no user interaction is wanted
parent 2e675207
No related branches found
No related tags found
No related merge requests found
FROM debian:buster-slim
RUN apt update && apt install -y --no-install-recommends \
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
file \
git \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment