92 lines
2.4 KiB
Docker
92 lines
2.4 KiB
Docker
ARG RUNTIME_VERSION="3.11"
|
|
ARG DISTRO_VERSION="3.19"
|
|
|
|
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
|
|
ARG RUNTIME_VERSION="3.11"
|
|
|
|
RUN apk add --no-cache \
|
|
autoconf \
|
|
automake \
|
|
build-base \
|
|
cmake \
|
|
curl \
|
|
make \
|
|
libc6-compat \
|
|
gcc \
|
|
linux-headers \
|
|
libffi-dev \
|
|
openssl-dev \
|
|
git
|
|
|
|
ENV VIRTUAL_ENV=/venv
|
|
RUN python -m venv $VIRTUAL_ENV
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
# Install CloudBender
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN pip install . --disable-pip-version-check
|
|
|
|
# Install matching Pulumi binaries
|
|
RUN curl -fsSL https://get.pulumi.com/ | sh -s -- --version $(pip show pulumi --disable-pip-version-check | grep Version: | awk '{print $2}')
|
|
|
|
# minimal pulumi
|
|
RUN cd /root/.pulumi/bin && rm -f *dotnet *yaml *go *java && strip pulumi* || true
|
|
|
|
# Remove AWS keys from docstring to prevent trivy alerts later
|
|
RUN sed -i -e 's/AKIA.*//' /venv/lib/python${RUNTIME_VERSION}/site-packages/pulumi_aws/lightsail/bucket_access_key.py
|
|
|
|
# Now build the final runtime, incl. running rootless containers
|
|
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION}
|
|
|
|
ARG USER=cloudbender
|
|
|
|
#cd /etc/apk/keys && \
|
|
#echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
|
|
#cfssl@testing \
|
|
|
|
RUN apk upgrade -U --available --no-cache && \
|
|
apk add --no-cache \
|
|
libstdc++ \
|
|
libc6-compat \
|
|
ca-certificates \
|
|
aws-cli \
|
|
fuse-overlayfs \
|
|
podman \
|
|
buildah \
|
|
strace
|
|
|
|
COPY --from=builder /venv /venv
|
|
COPY --from=builder /root/.pulumi/bin /usr/local/bin
|
|
|
|
# Dont run as root by default
|
|
RUN addgroup $USER && adduser $USER -G $USER -D && \
|
|
mkdir -p /home/$USER/.local/share/containers && \
|
|
chown $USER:$USER -R /home/$USER
|
|
|
|
# Rootless podman
|
|
RUN mkdir -p /home/$USER/.config/containers
|
|
|
|
ADD --chown=$USER:$USER conf/containers.conf conf/registries.conf conf/storage.conf /home/$USER/.config/containers
|
|
|
|
RUN echo -e "$USER:1:999\n$USER:1001:64535" > /etc/subuid && \
|
|
echo -e "$USER:1:999\n$USER:1001:64535" > /etc/subgid && \
|
|
cd /usr/bin && ln -s podman docker && \
|
|
chown $USER:$USER -R /home/$USER
|
|
|
|
WORKDIR /workspace
|
|
|
|
ENV _CONTAINERS_USERNS_CONFIGURED=""
|
|
ENV BUILDAH_ISOLATION=chroot
|
|
|
|
ENV VIRTUAL_ENV=/venv
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
ENV PULUMI_SKIP_UPDATE_CHECK=true
|
|
|
|
USER $USER
|
|
|
|
# Allow container layers to be stored in PVCs
|
|
VOLUME /home/$USER/.local/share/containers
|
|
|
|
CMD ["cloudbender"]
|