-
Notifications
You must be signed in to change notification settings - Fork 16
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
Optimise user image #669
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -377,4 +377,5 @@ plug-in | |
cosmpy | ||
tomte | ||
pyyaml | ||
1.36.0 | ||
1.36.0 | ||
1.39.0.post1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,19 @@ | ||
FROM ubuntu:22.04 | ||
FROM python:3.11-slim | ||
|
||
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
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"] |
There was a problem hiding this comment.
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