OpenSDE Framework (without history before r20070)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM amery/docker-ubuntu-builder:20.04
|
|
|
|
# sde get
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
git curl \
|
|
&& apt-get clean
|
|
|
|
# sde config
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
libncurses-dev \
|
|
&& apt-get clean
|
|
|
|
# sde build
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
autopoint \
|
|
bc \
|
|
texinfo \
|
|
&& apt-get clean
|
|
|
|
# ./debug.sh convenience
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
less \
|
|
vim \
|
|
&& apt-get clean
|
|
|
|
COPY opensde-profile.sh /etc/entrypoint.d/
|