Dockerfile 573 B

1234567891011121314151617181920212223
  1. # FYI, this base image is built via test-pr.sh (from https://github.com/docker-library/bashbrew/tree/master/Dockerfile)
  2. FROM oisupport/bashbrew:base
  3. RUN set -eux; \
  4. apt-get update; \
  5. apt-get install -y --no-install-recommends \
  6. # wget for downloading files (especially in tests, which run in this environment)
  7. ca-certificates \
  8. wget \
  9. # git for cloning source code
  10. git \
  11. # gawk for diff-pr.sh
  12. gawk \
  13. # tar -tf in diff-pr.sh
  14. bzip2 \
  15. ; \
  16. rm -rf /var/lib/apt/lists/*
  17. ENV DIR /usr/src/official-images
  18. ENV BASHBREW_LIBRARY $DIR/library
  19. WORKDIR $DIR
  20. COPY . $DIR