Skip to content

Commit

Permalink
fix: Correct copy path in Dockerfile for requirements.txt as build co…
Browse files Browse the repository at this point in the history
…ntext is root of project refs #117
  • Loading branch information
tcassaert committed Sep 27, 2024
1 parent ebed8a1 commit f52ac96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN pip install --upgrade pip

# Install openeo-aggregator
COPY --chown=openeo requirements.txt .
COPY --chown=openeo docker/requirements.txt .
RUN pip install -r requirements.txt

CMD ["gunicorn", "openeo_aggregator.app:create_app()"]

0 comments on commit f52ac96

Please sign in to comment.