Skip to content

Commit

Permalink
Added a Dockerfile that successfully compiles on Arch
Browse files Browse the repository at this point in the history
  • Loading branch information
subalterngames committed May 29, 2024
1 parent a70e673 commit 00bce31
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions test_dockerfiles/arch_linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
FROM archlinux:latest

ENV PATH="/root/.cargo/bin:${PATH}"

RUN mkdir cacophony

WORKDIR $HOME/cacophony

COPY Cargo.toml Cargo.toml

COPY Cargo.lock Cargo.lock

COPY audio/ audio/

COPY common/ common/

COPY data/ data/

COPY input/ input/

COPY io/ io/

COPY render/ render/

COPY src/ src/

COPY text/ text/

RUN pacman -Syu --noconfirm clang make pkgconfig rust speech-dispatcher alsa-lib openssl

RUN cargo build --features speech_dispatcher_0_11

0 comments on commit 00bce31

Please sign in to comment.