2022-10-26 16:57:54 +03:00
|
|
|
# Application Development image
|
|
|
|
# Contains a CCF release for platform and toolchain for target platform
|
2020-04-09 22:54:34 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
ARG platform=sgx
|
2020-04-14 19:08:50 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
# SGX
|
|
|
|
FROM ubuntu:20.04 AS base-sgx
|
2020-06-25 16:46:31 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
WORKDIR /
|
|
|
|
COPY ./docker/sgx_deps_pin.sh /
|
|
|
|
RUN ./sgx_deps_pin.sh && rm /sgx_deps_pin.sh
|
|
|
|
|
|
|
|
# SNP
|
|
|
|
FROM ubuntu:20.04 AS base-snp
|
2020-05-15 12:36:00 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
# Virtual
|
|
|
|
FROM ubuntu:20.04 AS base-virtual
|
2020-05-15 12:36:00 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
# Final dev image
|
|
|
|
FROM base-${platform} AS final
|
2021-07-13 23:00:18 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
ARG platform=sgx
|
|
|
|
ARG ansible_vars
|
2021-07-13 23:00:18 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
RUN echo "APT::Acquire::Retries \"5\";" | tee /etc/apt/apt.conf.d/80-retries
|
2021-07-13 23:00:18 +03:00
|
|
|
|
2022-10-26 16:57:54 +03:00
|
|
|
COPY getting_started/setup_vm/ /tmp/setup_vm/
|
2020-05-15 12:36:00 +03:00
|
|
|
RUN apt update \
|
2022-01-24 20:25:59 +03:00
|
|
|
&& apt install -y ansible software-properties-common bsdmainutils dnsutils \
|
2022-10-26 16:57:54 +03:00
|
|
|
&& cd /tmp/setup_vm \
|
|
|
|
&& ansible-playbook app-dev.yml --extra-vars "$ansible_vars" --extra-vars "platform=${platform}" \
|
2020-05-15 12:36:00 +03:00
|
|
|
&& rm -rf /tmp/* \
|
2022-01-24 20:25:59 +03:00
|
|
|
&& apt remove -y ansible software-properties-common \
|
2020-05-15 12:36:00 +03:00
|
|
|
&& apt -y autoremove \
|
|
|
|
&& apt -y clean
|