Skip to content
Snippets Groups Projects
Verified Commit 92fd2b99 authored by Georg Krause's avatar Georg Krause
Browse files

chore(Dockerfile): Update to use latest alpine and poetry for building

parent 5a388dd2
No related branches found
No related tags found
1 merge request!43Apply patches from the server
Pipeline #26088 failed with stage
in 1 minute and 46 seconds
FROM alpine:3.8
FROM alpine:3.17
RUN \
echo 'installing dependencies' && \
......@@ -7,15 +7,14 @@ RUN \
postgresql-dev \
python3-dev \
gcc \
musl-dev
musl-dev \
py3-pip
ARG flavour=
WORKDIR /app/
COPY ./setup.py /app/
COPY ./setup.cfg /app/
RUN pip3 install output
RUN pip3 install -e .$flavour
COPY ./funkwhale_network /app/
COPY ./poetry.lock /app/
COPY ./pyproject.toml /app/
COPY ./funkwhale_network/ /app/funkwhale_network/
RUN pip install .
EXPOSE 8000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment