2022-04-19 11:26:12 +00:00
|
|
|
ARG RUNTIME_VERSION="3.8"
|
2022-02-08 12:49:08 +00:00
|
|
|
ARG DISTRO_VERSION="3.15"
|
2022-06-22 13:08:45 +00:00
|
|
|
ARG PULUMI_VERSION="3.34.0"
|
2021-09-23 17:27:06 +00:00
|
|
|
|
|
|
|
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
|
|
|
|
ARG PULUMI_VERSION
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
build-base \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
make \
|
|
|
|
libc6-compat \
|
|
|
|
gcc \
|
|
|
|
linux-headers \
|
|
|
|
libffi-dev \
|
2022-02-08 16:08:09 +00:00
|
|
|
openssl-dev \
|
|
|
|
git
|
2021-09-23 17:27:06 +00:00
|
|
|
|
|
|
|
RUN if [ "$PULUMI_VERSION" = "latest" ]; then \
|
|
|
|
curl -fsSL https://get.pulumi.com/ | sh; \
|
|
|
|
else \
|
|
|
|
curl -fsSL https://get.pulumi.com/ | sh -s -- --version $PULUMI_VERSION ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
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 -r requirements.txt
|
|
|
|
RUN pip install . --no-deps
|
|
|
|
|
2022-06-01 11:16:19 +00:00
|
|
|
# minimal pulumi
|
|
|
|
RUN cd /root/.pulumi/bin && rm -f *dotnet *nodejs *go *java && strip pulumi* || true
|
2021-09-23 17:27:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Now build the final runtime
|
|
|
|
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION}
|
|
|
|
|
2022-06-01 11:16:19 +00:00
|
|
|
#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 \
|
2021-09-23 17:27:06 +00:00
|
|
|
libstdc++ \
|
|
|
|
libc6-compat \
|
|
|
|
ca-certificates \
|
2022-06-22 13:08:45 +00:00
|
|
|
aws-cli \
|
2021-09-23 17:27:06 +00:00
|
|
|
podman
|
|
|
|
|
|
|
|
COPY --from=builder /venv /venv
|
|
|
|
COPY --from=builder /root/.pulumi/bin /usr/local/bin
|
|
|
|
RUN mkdir /workspace && \
|
2022-06-01 11:16:19 +00:00
|
|
|
cd /usr/bin && ln -s podman docker
|
|
|
|
|
2021-09-23 17:27:06 +00:00
|
|
|
WORKDIR /workspace
|
|
|
|
|
|
|
|
ENV VIRTUAL_ENV=/venv
|
|
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
|
|
|
|
# Dont run as root by default
|
|
|
|
RUN addgroup cloudbender && adduser cloudbender -G cloudbender -D
|
|
|
|
USER cloudbender
|
|
|
|
|
|
|
|
CMD ["cloudbender"]
|