| 123456789101112131415161718192021222324252627 |
- FROM ubuntu:latest
- LABEL maintainer="Jeremy Zheng"
- ENV DEBIAN_FRONTEND noninteractive
- RUN apt update
- RUN apt -y upgrade
- RUN apt -y install build-essential
- RUN apt -y autoremove
- RUN apt -y clean
- RUN apt -y install locales locales-all tzdata build-essential
- RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
- RUN locale-gen
- RUN update-locale LANG=en_US.UTF-8
- RUN update-alternatives --set editor /usr/bin/vim.basic
- RUN echo "$(date -u +%4Y%m%d%H%M%S)" | tee /VERSION
- VOLUME /workspace
- WORKDIR /workspace
- CMD ["/bin/bash", "-l"]
|