Add docker

This commit is contained in:
Andros Fenollosa
2024-05-26 15:36:02 +02:00
parent 7241455afd
commit b9e58d77fd
5 changed files with 32 additions and 6 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM clojure:temurin-8-lein-bookworm-slim
# set work directory
WORKDIR /usr/src/app
# set time
RUN ln -fs /usr/share/zoneinfo/Europe/Madrid /etc/localtime
RUN dpkg-reconfigure -f noninteractive tzdata
# Install make
RUN apt update -y
RUN apt install -y make
Entrypoint ["make", "run"]