aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-02-26 14:07:11 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-02-26 14:07:11 +0300
commita6df736ddb24c36fb46d987bbbd71798b09a26c2 (patch)
tree024b692d3b4807a277d7f505cec74e81182c02c4
parentupdate (diff)
downloadcv-a6df736ddb24c36fb46d987bbbd71798b09a26c2.tar.gz
cv-a6df736ddb24c36fb46d987bbbd71798b09a26c2.zip
add Docker build files
-rw-r--r--docker-compose.yml7
-rw-r--r--docker/Dockerfile11
2 files changed, 18 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..f942dec
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,7 @@
+version: '3'
+services:
+ build:
+ build:
+ context: ./docker/
+ volumes:
+ - ./:/usr/src
diff --git a/docker/Dockerfile b/docker/Dockerfile
new file mode 100644
index 0000000..c52c9bf
--- /dev/null
+++ b/docker/Dockerfile
@@ -0,0 +1,11 @@
+FROM alpine:3.12
+
+RUN apk add --no-cache \
+ bash \
+ make \
+ texlive \
+ texmf-dist-latexextra
+
+WORKDIR /usr/src
+
+CMD ["make"]