diff --git a/Dockerfile b/Dockerfile index a82083e..bd7713a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,19 +1,21 @@ # NAME: dclong/base -FROM ubuntu:22.04 +FROM ubuntu:24.04 # shell SHELL ["/bin/bash", "-O", "extglob", "-c"] ENV HISTTIMEFORMAT="[%F %T %z] " +RUN userdel ubuntu RUN mkdir -p /workdir && chmod 777 /workdir WORKDIR /workdir COPY scripts /scripts +ENV EDITOR=nvim RUN apt-get update -y \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ sudo \ pkg-config software-properties-common apt-transport-https \ - file zip \ + fd-find file zip \ tzdata locales \ bash-completion man-db \ git openssh-client \