Simon Marsh
c71a8ea251
All checks were successful
continuous-integration/drone/push Build is passing
6 lines
334 B
Docker
6 lines
334 B
Docker
FROM ubuntu:jammy
|
|
RUN apt -y update && apt -y dist-upgrade && apt -y install build-essential curl git autoconf flex bison linux-headers-generic libncurses-dev libreadline-dev && apt -y autoremove --purge && apt -y autoclean && rm -rf /var/cache/apt/archives
|
|
ADD build.sh /build.sh
|
|
RUN echo "ubuntu" > /dist
|
|
ENTRYPOINT [ '/build.sh' ]
|