Add docker
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user