Newer
Older
Dockerfiles / Dockerfile.base
@John Ryland John Ryland on 30 Jun 2023 245 bytes test
FROM ubuntu:22.04
RUN rm -f /etc/apt/apt.conf.d/docker-clean
RUN apt-get update

# Set noninteractive installation
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Australia/Brisbane

# Install Base Build Tools
RUN apt-get install -y make git python3