mirror of https://github.com/nirenjan/libx52.git
13 lines
373 B
Docker
13 lines
373 B
Docker
FROM ubuntu:24.04
|
|
|
|
LABEL org.opencontainers.image.description="INTERNAL CI USE ONLY - Not intended for production"
|
|
LABEL org.opencontainers.image.authors="Nirenjan Krishnan"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
COPY ./install-dependencies-ubuntu.sh ./ci-setup.sh /tmp/
|
|
|
|
RUN /tmp/install-dependencies-ubuntu.sh && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
/tmp/ci-setup.sh
|