Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -25,13 +25,14 @@ RUN git checkout --recurse-submodules "${BRANCH_NAME}"
|
|
25 |
|
26 |
COPY get-lit.sh /app/
|
27 |
|
|
|
28 |
# RUN destination_dir="./bin/opus/linux"; dpkg -L libopus-dev | grep -E 'libopus.so|libopus.a' | xargs -I {} sh -c 'ext="${1##*.}"; cp "$1" "${destination_dir}/x64.${ext}"' _ {}
|
29 |
|
30 |
# RUN destination_dir="./bin/opus/win32"; dpkg -L libopus-dev | grep -E 'libopus.so|libopus.a' | xargs -I {} sh -c 'ext="${1##*.}"; echo $1 $ext $destination_dir/x64.${ext}; pwd; cp "$1" "$destination_dir/x64.${ext}"' _ {}
|
31 |
|
32 |
COPY auth.lua /app/src/addon/auth.lua
|
33 |
|
34 |
-
RUN mkdir -p ./bin/opus/linux
|
35 |
|
36 |
RUN export destination_dir="./bin" && dpkg -L libopus-dev | grep -E 'libopus.so|libopus.a' | xargs -I {} sh -c 'ext="${1##*.}"; echo "$1 $ext $destination_dir/opus-linux-x64.${ext}"; cp "$1" "$destination_dir//opus-linux-x64.${ext}"' -- {}
|
37 |
|
|
|
25 |
|
26 |
COPY get-lit.sh /app/
|
27 |
|
28 |
+
COPY sodium-linux-x64.so /app/bin/
|
29 |
# RUN destination_dir="./bin/opus/linux"; dpkg -L libopus-dev | grep -E 'libopus.so|libopus.a' | xargs -I {} sh -c 'ext="${1##*.}"; cp "$1" "${destination_dir}/x64.${ext}"' _ {}
|
30 |
|
31 |
# RUN destination_dir="./bin/opus/win32"; dpkg -L libopus-dev | grep -E 'libopus.so|libopus.a' | xargs -I {} sh -c 'ext="${1##*.}"; echo $1 $ext $destination_dir/x64.${ext}; pwd; cp "$1" "$destination_dir/x64.${ext}"' _ {}
|
32 |
|
33 |
COPY auth.lua /app/src/addon/auth.lua
|
34 |
|
35 |
+
# RUN mkdir -p ./bin/opus/linux
|
36 |
|
37 |
RUN export destination_dir="./bin" && dpkg -L libopus-dev | grep -E 'libopus.so|libopus.a' | xargs -I {} sh -c 'ext="${1##*.}"; echo "$1 $ext $destination_dir/opus-linux-x64.${ext}"; cp "$1" "$destination_dir//opus-linux-x64.${ext}"' -- {}
|
38 |
|