michaelmob / docker-funkwhale

All-in-one funkwhale docker image.
92 stars 18 forks source link

can't build this dockerfile missing file: requirements.txt #57

Closed albjeremias closed 3 years ago

albjeremias commented 3 years ago

Describe the bug I can't build this project, because is missing the requirements.txt

Logs

/docker-funkwhale$ docker build .
Sending build context to Docker daemon  201.2kB
Step 1/14 : FROM alpine:3.10
 ---> e7b300aee9f9
Step 2/14 : MAINTAINER thetarkus
 ---> Using cache
 ---> 5c19b493e337
Step 3/14 : EXPOSE 80
 ---> Using cache
 ---> 6b17aad5413b
Step 4/14 : ARG arch=amd64
 ---> Using cache
 ---> 966b7955199b
Step 5/14 : RUN     echo 'installing dependencies' &&   apk add --no-cache  shadow              gettext             git                 postgresql          postgresql-contrib  postgresql-dev      python3-dev         py3-psycopg2        py3-pillow          redis               nginx               make                musl-dev            gcc                 unzip               libldap             libsasl             ffmpeg              libpq               libmagic            libffi-dev          zlib-dev            openldap-dev &&             echo 'creating users' &&    adduser -s /bin/false -D -H funkwhale funkwhale &&          echo 'creating directories' &&  mkdir -p /app/api /run/nginx /run/postgresql /var/log/funkwhale &&  chown funkwhale:funkwhale /app/api /var/log/funkwhale &&            echo 'downloading archives' &&  wget https://github.com/just-containers/s6-overlay/releases/download/v1.21.7.0/s6-overlay-$arch.tar.gz -O /tmp/s6-overlay.tar.gz &&             echo 'extracting archives' &&   cd /app &&  tar -C / -xzf /tmp/s6-overlay.tar.gz &&             echo 'setting up nginx' &&  rm /etc/nginx/conf.d/default.conf &&            echo 'removing temp files' &&   rm /tmp/*.tar.gz
 ---> Using cache
 ---> 4df7a9ac4ca2
Step 6/14 : COPY ./src/api/requirements.txt /app/api/requirements.txt
COPY failed: stat /var/lib/docker/tmp/docker-builder554980610/src/api/requirements.txt: no such file or directory

System information

albjeremias commented 3 years ago

sorry.. i read now the readme.. will test (will reopen if i cant solve it)