FROM ubuntu:24.04 | |
COPY . . | |
RUN apt-get update && \ | |
apt-get install -y --no-install-recommends curl tar wget ca-certificates && \ | |
chmod +x /entrypoint.sh | |
USER ubuntu | |
ENV HOME=/home/ubuntu \ | |
PATH=/home/ubuntu/.local/bin:$PATH | |
CMD ["/entrypoint.sh"] |