Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
Loading