add Dockerfile for easier build
This commit is contained in:
parent
cc477fb908
commit
c1b2134575
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM debian:bullseye
|
||||
|
||||
RUN apt-get update && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
||||
texlive-full poppler-utils \
|
||||
osm2pgsql postgresql-client \
|
||||
python3-pygments python3-geopandas \
|
||||
latexmk make \
|
||||
docker.io
|
14
in-container
Executable file
14
in-container
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
NAME=wm-mj-build
|
||||
|
||||
if [[ -z "$(docker images -q --filter "reference=$NAME")" ]]; then
|
||||
docker build -t "$NAME" - < Dockerfile
|
||||
fi
|
||||
|
||||
exec docker run --rm \
|
||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||
-v ${PWD}:/x \
|
||||
-w /x \
|
||||
"$NAME" "$@"
|
Loading…
Reference in New Issue
Block a user