mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
Add a Dockerfile and Spec for Fedora 34
This commit is contained in:
committed by
Dmitry Vedenko
parent
58f2b2f99e
commit
583adc57d0
19
linux/packages/fedora34/Dockerfile
Normal file
19
linux/packages/fedora34/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM fedora:34
|
||||
|
||||
LABEL maintainer="d.vedenko@audacityteam.org"
|
||||
LABEL description="A build environment to check the builds for Fedora package maintainers"
|
||||
LABEL version="3.0"
|
||||
|
||||
COPY ["dependencies.sh", "/dependencies.sh"]
|
||||
RUN ./dependencies.sh
|
||||
|
||||
COPY ["entrypoint.sh", "/entrypoint.sh"]
|
||||
|
||||
RUN useradd -m user
|
||||
#RUN echo "user ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/user
|
||||
USER user
|
||||
WORKDIR /home/user
|
||||
|
||||
COPY ["audacity.spec", "/home/user/audacity.spec"]
|
||||
|
||||
ENTRYPOINT ["bash", "-ex", "/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user