forked from containerbase/base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
32 lines (20 loc) · 771 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
32
#--------------------------------------
# Image: base
#--------------------------------------
FROM ubuntu:20.04@sha256:4a45212e9518f35983a976eead0de5eecc555a2f047134e9dd2cfc589076a00d
ARG APT_HTTP_PROXY
# Weekly cache buster
ARG CACHE_WEEK
ARG BUILDPACK_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-buildpack
# renovate: datasource=github-tags packageName=git/git
RUN install-tool git v2.39.2
LABEL org.opencontainers.image.version="${BUILDPACK_VERSION}"