Skip to content
Snippets Groups Projects
Verified Commit 06c888f4 authored by Varac's avatar Varac
Browse files

Fix requirements.txt location in Dockerfile

parent d36d47e5
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,6 @@ RUN apk --no-cache add \ ...@@ -20,6 +20,6 @@ RUN apk --no-cache add \
python3-dev \ python3-dev \
rsync rsync
COPY ./test/requirements.txt /requirements.txt COPY ./requirements.txt /requirements.txt
RUN pip3 install -r /requirements.txt RUN pip3 install -r /requirements.txt
RUN ln -s /usr/bin/python3 /usr/bin/python RUN ln -s /usr/bin/python3 /usr/bin/python
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