redlib / Dockerfile
axebps's picture
Update Dockerfile
7fb8338 verified
raw
history blame
363 Bytes
FROM ubuntu
RUN apt-get update && \
apt-get install -y --no-install-recommends wget ca-certificates && \
wget -O redlib.tar.gz "https://github.com/redlib-org/redlib/releases/download/v0.35.1/redlib-x86_64-unknown-linux-musl.tar.gz" && \
tar -zxf redlib.tar.gz && \
mv redlib /usr/local/bin/ && \
rm redlib.tar.gz
CMD ["redlib", "-p", "7860"]