You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
262 B
Docker

FROM ubuntu:rolling
ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC
ENV UTC=true
ENV ARC=false
COPY ubuntu.sh /tmp
RUN apt-get update && \
apt-get upgrade --yes && \
sh /tmp/ubuntu.sh && \
mkdir -p /builds
WORKDIR /builds
VOLUME [ "/builds" ]