Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimise user image #669

Merged
merged 3 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -377,4 +377,5 @@ plug-in
cosmpy
tomte
pyyaml
1.36.0
1.36.0
1.39.0.post1
39 changes: 11 additions & 28 deletions user-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,36 +1,19 @@
FROM ubuntu:22.04
FROM python:3.11-slim

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool change!
we definitely need to pay more attention to the images quiality

RUN apt-get update && apt-get upgrade -y
RUN apt-get install sudo git curl -y

RUN adduser --disabled-password --gecos '' ubuntu
RUN adduser ubuntu sudo
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers

RUN apt install -y python3.10 python3.10-dev python3-pip libffi-dev
RUN pip3 install --upgrade pip
RUN pip3 install pipenv

# utils
RUN apt install -y wget

# golang
RUN wget https://dl.google.com/go/go1.13.8.linux-amd64.tar.gz && \
tar -xzvf go1.13.8.linux-amd64.tar.gz -C /usr/local && \
export PATH=$PATH:/usr/local/go/bin && echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc && \
mkdir $HOME/go

Comment on lines -18 to -21
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not required for agent runtime

USER ubuntu

ENV PATH="${PATH}:/usr/local/go/bin"
ENV DEBIAN_FRONTEND noninteractive
ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8

RUN apt update
RUN apt install -y python3.11-dev python3-pip -y
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@angrybayblade better to join in one command with &&, so there will be no intermediate layers cosuming disk space.
so install and clean at the same time.

RUN apt autoremove
RUN apt autoclean

RUN pip3 install --upgrade pip
RUN pip3 install "open-aea[all]==1.39.0.post1" open-aea-cli-ipfs==1.39.0.post1

COPY user-image/openssl.cnf /etc/ssl

RUN echo 'PATH="$(python3.10 -m site --user-base)/bin:${PATH}"' >> ~/.bashrc
RUN echo "alias pip=pip3" >> ~/.bashrc
RUN echo "alias python=python3.10" >> ~/.bashrc
WORKDIR /root

ENTRYPOINT [ "/bin/bash"]
ENTRYPOINT ["/bin/bash", "-c"]
Loading