conda-cache (latest)
Published 2026-05-20 15:11:56 +02:00 by lx-gitea
Installation
docker pull gitea.psi.ch/images/conda-cache:latestsha256:daa361a6b3478724ccf221f911a84f55bc9a427e73546b4f04da3951619c6b7b
Image Layers
| ADD alpine-minirootfs-3.23.4-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| WORKDIR /app |
| COPY server.py . # buildkit |
| COPY requirements.txt . # buildkit |
| RUN /bin/sh -c apk --no-cache add python3 py3-pip # buildkit |
| RUN /bin/sh -c python3 -m venv /opt/python-env # buildkit |
| RUN /bin/sh -c /opt/python-env/bin/python3 -m pip install --upgrade pip # buildkit |
| RUN /bin/sh -c /opt/python-env/bin/pip install --no-cache-dir -r requirements.txt # buildkit |
| RUN /bin/sh -c rm -rf /var/cache/apk/* # buildkit |
| VOLUME [/cache] |
| CMD ["/opt/python-env/bin/python3" "server.py" "--config" "/app/config.toml" "--cache-dir" "/cache"] |