Skip to content

Commit

Permalink
add vscode devcontainer config
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenpieters committed Dec 15, 2023
1 parent 4a39504 commit 32ea94d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .devcontainer/devcontainer.json
@@ -0,0 +1,7 @@
{
"name": "Docker development",
"build": {
"context": "..",
"dockerfile": "../Dockerfile"
}
}
4 changes: 4 additions & 0 deletions Dockerfile
Expand Up @@ -2,3 +2,7 @@ FROM python:3.11.4-bookworm

RUN apt-get update
RUN apt-get -y install texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-fonts-extra latexmk
RUN apt-get -y install php-cli php-dom

ADD requirements.txt .
RUN pip install -r requirements.txt

0 comments on commit 32ea94d

Please sign in to comment.