Skip to content

Commit 099f505

Browse files
authored
Merge pull request #817 from valory-xyz/fix/user-image-building
Fix: `open-aea-user` image building
2 parents 63a26cf + 02fc5c1 commit 099f505

8 files changed

Lines changed: 18 additions & 17 deletions

File tree

HISTORY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
## 2.0.5 (2025-08-15)
44

55
Plugins:
6-
- Bumps `open-aea-flashbots==2.0.0` in `open-aea-ledger-ethereum-flashbots`
6+
- Bumps `open-aea-flashbots==2.0.0` in `open-aea-ledger-ethereum-flashbots` #814
7+
- Fixes `valory/open-aea-user` docker image building and warnings #817
78

89
## 2.0.4 (2025-08-11)
910

benchmark/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.10-alpine
22

3-
ENV PYTHONPATH "$PYTHONPATH:/usr/lib/python3.10/site-packages"
3+
ENV PYTHONPATH="$PYTHONPATH:/usr/lib/python3.10/site-packages"
44
RUN apk add --no-cache make git bash wget
55
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev
66
RUN apk add --update --no-cache py3-numpy py3-scipy py3-pillow

deploy-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev
99

1010
# https://stackoverflow.com/a/57485724
1111
RUN apk add --update --no-cache py3-numpy py3-scipy py3-pillow
12-
ENV PYTHONPATH "$PYTHONPATH:/usr/lib/python3.10/site-packages"
12+
ENV PYTHONPATH="$PYTHONPATH:/usr/lib/python3.10/site-packages"
1313

1414
# golang
1515
RUN apk add --no-cache go

develop-image/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM ubuntu:22.04
2-
ENV DEBIAN_FRONTEND noninteractive
2+
ENV DEBIAN_FRONTEND=noninteractive
33

44
RUN apt-get update && apt-get upgrade -y
55
RUN apt-get install -y \
@@ -43,8 +43,8 @@ RUN apt-get install -y \
4343

4444

4545
# needed by Pipenv
46-
ENV LC_ALL C.UTF-8
47-
ENV LANG C.UTF-8
46+
ENV LC_ALL=C.UTF-8
47+
ENV LANG=C.UTF-8
4848

4949
RUN sudo apt-get install -y tox
5050
RUN python3 -m pip install -U pipenv

develop-image/Dockerfile_local

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM ubuntu:20.04
2-
ENV DEBIAN_FRONTEND noninteractive
2+
ENV DEBIAN_FRONTEND=noninteractive
33

44
RUN apt-get update && apt-get upgrade -y
55
RUN apt-get install -y \
@@ -43,8 +43,8 @@ RUN apt-get install -y \
4343

4444

4545
# needed by Pipenv
46-
ENV LC_ALL C.UTF-8
47-
ENV LANG C.UTF-8
46+
ENV LC_ALL=C.UTF-8
47+
ENV LANG=C.UTF-8
4848

4949
RUN sudo apt-get install -y tox
5050
RUN python3 -m pip install -U pipenv

docs-image/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM ubuntu:22.04 as base
2-
ENV DEBIAN_FRONTEND noninteractive
2+
ENV DEBIAN_FRONTEND=noninteractive
33

44
RUN apt-get update && apt-get upgrade -y
55
RUN apt-get install -y \
@@ -9,8 +9,8 @@ RUN apt-get install -y \
99
git
1010

1111
# needed by Pipenv
12-
ENV LC_ALL C.UTF-8
13-
ENV LANG C.UTF-8
12+
ENV LC_ALL=C.UTF-8
13+
ENV LANG=C.UTF-8
1414

1515
RUN python3 -m pip install -U pipenv
1616

examples/tac_deploy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev
1212

1313
# https://stackoverflow.com/a/57485724
1414
RUN apk add --update --no-cache py3-numpy py3-scipy py3-pillow
15-
ENV PYTHONPATH "${PYTHONPATH}:/usr/lib/python3.10/site-packages"
15+
ENV PYTHONPATH="${PYTHONPATH}:/usr/lib/python3.10/site-packages"
1616

1717
# golang
1818
RUN apk add --no-cache go

user-image/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM python:3.11-slim
22

3-
ENV DEBIAN_FRONTEND noninteractive
4-
ENV LC_ALL C.UTF-8
5-
ENV LANG C.UTF-8
3+
ENV DEBIAN_FRONTEND=noninteractive
4+
ENV LC_ALL=C.UTF-8
5+
ENV LANG=C.UTF-8
66

7-
RUN apt update && apt install -y python3.11-dev python3-pip -y && apt autoremove && apt autoclean
7+
RUN apt update && apt upgrade && apt install -y python3-dev python3-pip -y && apt autoremove && apt autoclean
88

99
RUN pip3 install --upgrade pip
1010
RUN pip3 install "open-aea[all]==2.0.5" open-aea-cli-ipfs==2.0.5

0 commit comments

Comments
 (0)