noahsettersten commited on
Commit
4b23ad5
1 Parent(s): 7bc0776

build(deps): Add ALSA and Portaudio dependencies to Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -22,6 +22,8 @@ FROM ${BUILDER_IMAGE} as builder
22
 
23
  # install build dependencies
24
  RUN apt-get update -y && apt-get install -y build-essential git curl \
 
 
25
  && apt-get clean && rm -f /var/lib/apt/lists/*_*
26
 
27
  # prepare build dir
@@ -68,7 +70,8 @@ RUN mix release
68
  FROM ${RUNNER_IMAGE}
69
 
70
  RUN apt-get update -y && \
71
- apt-get install -y libstdc++6 openssl libncurses5 locales ca-certificates curl unzip ffmpeg \
 
72
  && apt-get clean && rm -f /var/lib/apt/lists/*_*
73
 
74
  # Set the locale
 
22
 
23
  # install build dependencies
24
  RUN apt-get update -y && apt-get install -y build-essential git curl \
25
+ libasound2-dev portaudio19-dev \
26
+ libportaudio2 libportaudiocpp0 \
27
  && apt-get clean && rm -f /var/lib/apt/lists/*_*
28
 
29
  # prepare build dir
 
70
  FROM ${RUNNER_IMAGE}
71
 
72
  RUN apt-get update -y && \
73
+ apt-get install -y libstdc++6 openssl libncurses5 locales ca-certificates \
74
+ curl unzip ffmpeg libasound2-dev portaudio19-dev \
75
  && apt-get clean && rm -f /var/lib/apt/lists/*_*
76
 
77
  # Set the locale