1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-19 01:20:54 +02:00
2021-08-02 19:52:31 +03:00

22 lines
481 B
Docker

FROM ubuntu:20.04
LABEL maintainer="d.vedenko@audacityteam.org"
LABEL description="A build environment to check the builds for Ubuntu package maintainers"
LABEL version="3.0"
COPY ["dependencies.sh", "/dependencies.sh"]
RUN ./dependencies.sh
COPY ["entrypoint.sh", "/entrypoint.sh"]
RUN useradd -m user
COPY ["debian", "/home/user/audacity-3.0.3/debian"]
RUN chown -R user /home/user/audacity-3.0.3
USER user
WORKDIR /home/user
ENTRYPOINT ["bash", "-ex", "/entrypoint.sh"]