forked from docker-library/bashbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
37 lines (25 loc) · 865 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
33
34
35
36
37
FROM golang:1.20-bullseye AS build
SHELL ["bash", "-Eeuo", "pipefail", "-xc"]
WORKDIR /usr/src/bashbrew
COPY go.mod go.sum ./
RUN go mod download; go mod verify
COPY . .
RUN CGO_ENABLED=0 ./bashbrew.sh --version; \
cp -al bin/bashbrew /
FROM infosiftr/moby
SHELL ["bash", "-Eeuo", "pipefail", "-xc"]
RUN apt-get update; \
apt-get install -y --no-install-recommends \
git \
; \
rm -rf /var/lib/apt/lists/*
COPY --from=build /bashbrew /usr/local/bin/
RUN bashbrew --version
ENV BASHBREW_CACHE /bashbrew-cache
# make sure our default cache dir exists and is writable by anyone (similar to /tmp)
RUN mkdir -p "$BASHBREW_CACHE"; \
chmod 1777 "$BASHBREW_CACHE"
# (this allows us to decide at runtime the exact uid/gid we'd like to run as)
VOLUME $BASHBREW_CACHE
COPY scripts/bashbrew-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["bashbrew-entrypoint.sh"]