16 lines
361 B
Docker
16 lines
361 B
Docker
# FROM gitea.fithwum.tech/fithwum/debian-base:bullseye
|
|
FROM debian:latest
|
|
|
|
ARG VERSION
|
|
ENV VERSION=${VERSION}
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
debootstrap wget curl bash ftp-upload dirmngr locales sudo git bzip2 \
|
|
&& apt-get clean
|
|
|
|
COPY base-image-script/ /scripts/
|
|
RUN chmod +x /scripts/*.sh
|
|
|
|
CMD ["bash"]
|