Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed while embedding metadata [255] #212

Merged
merged 3 commits into from
Jun 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,28 @@ RUN apk add \
ffmpeg \
bash \
which \
cmake \
gcc \
g++ \
make \
linux-headers \
&& ln /usr/bin/python3 /usr/bin/python \
&& find /usr/lib/python3* -type d -name __pycache__ -exec rm -r {} \+

# install atomicparsley
# clones and checkouts to latest stable tag...
# ... then compiles and moves the binary to bins directory
RUN mkdir /bins \
&& wget -nv https://github.com/wez/atomicparsley/releases/download/20210715.151551.e7ad03a/AtomicParsleyAlpine.zip \
&& unzip -j AtomicParsleyAlpine.zip AtomicParsley -d /bins \
&& rm -v AtomicParsleyAlpine.zip
&& git clone https://github.com/wez/atomicparsley \
&& cd atomicparsley \
&& git fetch --tags \
&& latestTag=$(git describe --tags `git rev-list --tags --max-count=1`) \
&& git checkout $latestTag \
&& cmake . \
&& cmake --build . --config Release \
&& mv AtomicParsley /bins \
&& cd .. \
&& rm -r atomicparsley
ENV PATH "/bins:$PATH"

# Create freyr user and group
Expand Down