redlib / Dockerfile
axebps's picture
Update Dockerfile
be37709 verified
raw
history blame
281 Bytes
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 && \
mkdir -p /home/ubuntu/.local/bin
USER ubuntu
ENV PATH=/home/ubuntu/.local/bin:$PATH
CMD ["/entrypoint.sh"]