Files
create/tools/build/Docker/Dockerfile.Debian
2023-02-18 16:09:56 -06:00

18 lines
260 B
Docker

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