Skip to content
Snippets Groups Projects
Commit 59d7fd7b authored by Robert Goldmann's avatar Robert Goldmann
Browse files

added libffi-dev as dependency

parent 3bdbf990
Branches
Tags
No related merge requests found
FROM python:3.7-alpine
RUN apk add --no-cache --virtual .build-deps gcc musl-dev
RUN apk add --no-cache --virtual .build-deps gcc musl-dev libffi-dev
RUN pip install pipenv
COPY . /opt/SpotifyBackup
......@@ -9,6 +9,6 @@ WORKDIR /opt/SpotifyBackup
RUN pipenv install
RUN ln -s $(pipenv --venv) /opt/SpotifyBackup/mypipenv
RUN apk del .build-deps gcc musl-dev
RUN apk del .build-deps gcc musl-dev libffi-dev
CMD [ "/opt/SpotifyBackup/mypipenv/bin/python", "/opt/SpotifyBackup/SpotifyBackup.py" ]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment