diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index d432212dec..3cedc8e876 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,11 +1,11 @@ -# Use a base image (e.g., Ubuntu) -FROM ubuntu:latest +# Use a base image +FROM alpine:latest ENV DEBIAN_FRONTEND noninteractive ENV TZ Etc/UTC # Install necessary dependencies RUN apt-get update && \ - apt-get install -y build-essential tcl wget && \ + apt-get install -y --no-install-recommends tzdata && \ rm -rf /var/lib/apt/lists/* # Download, compile, and install Redis