Skip to content
Snippets Groups Projects
Commit c22549db authored by Luke Naylor's avatar Luke Naylor
Browse files

Add working compose config to allow podman-compose instead of using devcontainers

parent b531788d
No related branches found
No related tags found
No related merge requests found
Pipeline #36920 failed
......@@ -3,5 +3,5 @@ FROM registry.gitlab.com/lukenaylor/latex/sage-tex-chroma-image:latest
# Add the tree-sitter parser for Rust
RUN git clone --depth=1 --branch v0.20.4 https://github.com/tree-sitter/tree-sitter-rust.git /root/src/tree-sitter-rust
# Install the pseudowalls sage package
RUN sage -pip install pseudowalls --extra-index-url https://gitlab.com/api/v4/projects/43962374/packages/pypi/simple
RUN /usr/bin/bash -c ". ~/.bashrc; sage -pip install pseudowalls --extra-index-url https://gitlab.com/api/v4/projects/43962374/packages/pypi/simple"
version: "3.8"
services:
dev:
build:
context: ./.devcontainer
volumes:
- type: bind
source: .
target: /root/workdir/:z
entrypoint: ["/usr/bin/bash", "-i"]
stdin_open: true # docker run -i
tty: true # docker run -t
#privileged: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment