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