Skip to content

Commit f52ac96

Browse files
committed
fix: Correct copy path in Dockerfile for requirements.txt as build context is root of project refs #117
1 parent ebed8a1 commit f52ac96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
3333
RUN pip install --upgrade pip
3434

3535
# Install openeo-aggregator
36-
COPY --chown=openeo requirements.txt .
36+
COPY --chown=openeo docker/requirements.txt .
3737
RUN pip install -r requirements.txt
3838

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

0 commit comments

Comments
 (0)