File size: 263 Bytes
be37709 43a9300 77cd152 43a9300 77cd152 c43c251 be37709 c43c251 43a9300 77cd152 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"] |