forked from containerbase/base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
31 lines (20 loc) · 782 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#--------------------------------------
# Image: base
#--------------------------------------
FROM ubuntu:20.04@sha256:ed4a42283d9943135ed87d4ee34e542f7f5ad9ecf2f244870e23122f703f91c2
ARG APT_HTTP_PROXY
# Weekly cache buster
ARG CACHE_WEEK
ARG CONTAINERBASE_VERSION
LABEL maintainer="Rhys Arkins <[email protected]>" \
org.opencontainers.image.source="https://github.com/containerbase/base"
# autoloading containerbase env
ENV BASH_ENV=/usr/local/etc/env ENV=/usr/local/etc/env PATH=/home/ubuntu/bin:$PATH
SHELL ["/bin/bash" , "-c"]
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["bash"]
COPY src/ /
RUN install-containerbase
# renovate: datasource=github-tags packageName=git/git
RUN install-tool git v2.42.1
LABEL org.opencontainers.image.version="${CONTAINERBASE_VERSION}"