You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
438 B
16 lines
438 B
FROM debian:stable
|
|
CMD [ "/sbin/init" ]
|
|
|
|
# We can't use timedatectl because systemd isn't available
|
|
# during the build process, so we have to set it manually
|
|
ENV TZ=US/Central
|
|
RUN rm /etc/localtime && \
|
|
ln -s /usr/share/zoneinfo/$TZ /etc/localtime && \
|
|
echo $TZ > /etc/timezone
|
|
|
|
# Install packages
|
|
RUN apt update -y
|
|
RUN apt upgrade -y
|
|
RUN apt install -y systemd sudo wget nano less
|
|
RUN apt autoremove -y --purge
|
|
RUN apt clean -y
|
|
|