commit d70d9c60449524501ab04f758973f59ee705207d Author: nathan Date: Wed Apr 30 09:13:20 2025 +1000 Add Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ab60ef0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM ubuntu:latest + +ENV TERM linux +#ENV TZ=Australia/Sydney +ENV TZ=Pacific/Auckland + +# Set timezone: +RUN ln -snf /usr/share/zoneinfo/$CONTAINER_TIMEZONE /etc/localtime && echo $CONTAINER_TIMEZONE > /etc/timezone + +RUN apt update && \ + apt install curl wget git zip tar ca-certificates unzip xz-utils jq -y && \ + DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends tzdata && \ + apt clean && rm -rf /var/lib/apt/lists/* + +# Generate locale +RUN locale-gen en_US.UTF-8 \ No newline at end of file