Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -26,7 +26,7 @@ RUN git checkout --recurse-submodules "${BRANCH_NAME}"
|
|
26 |
|
27 |
COPY get-lit.sh /app/
|
28 |
|
29 |
-
COPY sodium-linux-x64.so /app/bin/
|
30 |
# 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}"' _ {}
|
31 |
|
32 |
# 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}"' _ {}
|
@@ -37,6 +37,9 @@ COPY auth.lua /app/src/addon/auth.lua
|
|
37 |
|
38 |
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}"' -- {}
|
39 |
|
|
|
|
|
|
|
40 |
RUN ls -la ./bin
|
41 |
|
42 |
RUN ls -la
|
|
|
26 |
|
27 |
COPY get-lit.sh /app/
|
28 |
|
29 |
+
# COPY sodium-linux-x64.so /app/bin/
|
30 |
# 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}"' _ {}
|
31 |
|
32 |
# 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}"' _ {}
|
|
|
37 |
|
38 |
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}"' -- {}
|
39 |
|
40 |
+
RUN export destination_dir="./bin" && dpkg -L libsodium-dev | grep -E 'libsodium.so|libsodium.a' | xargs -I {} sh -c 'ext="${1##*.}"; echo "$1 $ext $destination_dir/sodium-linux-x64.${ext}"; cp "$1" "$destination_dir/sodium-linux-x64.${ext}"' -- {}
|
41 |
+
|
42 |
+
|
43 |
RUN ls -la ./bin
|
44 |
|
45 |
RUN ls -la
|