Skip to content

Commit

Permalink
rename docker requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
arminveres committed Nov 25, 2023
1 parent 0f1fc46 commit b9e7c05
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/agent.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN mkdir -p bin && curl -L -o bin/jq \

RUN pip install --no-cache-dir aries-cloudagent

ADD ./requirements.txt ./requirements.txt
ADD ./requirements.docker.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# install orion dependencies
Expand Down
2 changes: 1 addition & 1 deletion docker/auditor.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ARG gozip=go${goversion}.linux-amd64.tar.gz
# Enable some bash features such as pushd/popd
SHELL ["bash", "-c"]

ADD ./requirements.txt ./requirements.txt
ADD ./requirements.docker.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir pyyaml

Expand Down
2 changes: 1 addition & 1 deletion docker/updater.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM python:3.9-slim-bookworm
LABEL maintainer="Armin Veres"

ADD ./requirements.txt .
ADD ./requirements.docker.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# copy files over
Expand Down
2 changes: 2 additions & 0 deletions requirements.dev.noconda.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ aries-cloudagent=0.10.4
aries-askar=0.2.9
indy-credx=1.1.0
indy-vdr=0.4.0

# vim: ft=requirements
2 changes: 2 additions & 0 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ aries-cloudagent==0.10.4
aries-askar==0.2.9
indy-credx==1.1.0
indy-vdr==0.4.0

# vim: ft=requirements
2 changes: 2 additions & 0 deletions requirements.txt → requirements.docker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ web.py~=0.62
pygments~=2.10
qrcode[pil]~=6.1
aiohttp~=3.8.6

# vim: ft=requirements

0 comments on commit b9e7c05

Please sign in to comment.