redlib / Dockerfile
axebps's picture
Update Dockerfile
77cd152 verified
raw
history blame
180 Bytes
FROM ubuntu
COPY . .
RUN apt-get update && \
apt-get install -y --no-install-recommends curl tar wget ca-certificates && \
chmod +x /entrypoint.sh
CMD ["/entrypoint.sh"]