From 7f741b49be7bc6afe73faaa60262c7884c37497b Mon Sep 17 00:00:00 2001 From: Lauren Kaviak Date: Fri, 20 Mar 2026 01:25:52 -0500 Subject: [PATCH] forgot to include -y, add one more package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a333edc..372a0d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG UBUNTU_VERSION=latest FROM ubuntu:${UBUNTU_VERSION} LABEL AUTHOR=Lauren WORKDIR /opt/setup -RUN apt update && apt install nodejs curl mingw-w64 +RUN apt update && apt install -y build-essential nodejs curl mingw-w64 COPY setup.sh /opt/setup/setup.sh RUN bash /opt/setup/setup.sh ENV PATH=$PATH:$HOME/.cargo/bin \ No newline at end of file