Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.
Open
Changes from all commits
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
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ RUN apk add --virtual .build-deps python3-dev libffi-dev build-base \
COPY . /opt/linkedin-matrix
RUN apk add --no-cache git && pip3 install --no-cache-dir .[e2be] && apk del git \
# This doesn't make the image smaller, but it's needed so that the `version` command works properly
&& cp linkedin_matrix/example-config.yaml . && rm -rf linkedin_matrix .git build
&& cp linkedin_matrix/example-config.yaml . && rm -rf linkedin_matrix .git build \
&& chown -R 1337:1337 /opt/linkedin-matrix

VOLUME /data
ENV UID=1337 GID=1337
Expand Down