mirror of
https://github.com/clearlinux/official-images.git
synced 2026-04-28 10:53:39 +00:00
24 lines
573 B
Docker
24 lines
573 B
Docker
# FYI, this base image is built via test-pr.sh (from https://github.com/docker-library/bashbrew/tree/master/Dockerfile)
|
|
FROM oisupport/bashbrew:base
|
|
|
|
RUN set -eux; \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
# wget for downloading files (especially in tests, which run in this environment)
|
|
ca-certificates \
|
|
wget \
|
|
# git for cloning source code
|
|
git \
|
|
# gawk for diff-pr.sh
|
|
gawk \
|
|
# tar -tf in diff-pr.sh
|
|
bzip2 \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV DIR /usr/src/official-images
|
|
ENV BASHBREW_LIBRARY $DIR/library
|
|
|
|
WORKDIR $DIR
|
|
COPY . $DIR
|