Fix filename typo in Dockerfile

This commit is contained in:
2023-12-20 12:20:02 +01:00
parent 849aea4e5a
commit 40bbc817a8
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ FROM debian:bookworm-slim
RUN apt update && \
apt install -y texlive-full
ADD build.sh /
ADD compile.sh /
RUN chmod +x /compile.sh
ENTRYPOINT ["/compile.sh"]

View File

@@ -1,6 +1,6 @@
#!/bin/sh
set -euo pipefail
set -e
files="$1"
compiler="$2"