mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-19 17:40:51 +02:00
22 lines
481 B
Docker
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"]
|