localhost-llm commited on
Commit
b4c01e8
·
verified ·
1 Parent(s): 711a924

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM debian:stable
2
+
3
+ USER root
4
+
5
+ ENV DEBIAN_FRONTEND interactive
6
+
7
+ COPY . /app
8
+
9
+ RUN chmod -R 777 /app
10
+
11
+ WORKDIR /app
12
+
13
+ RUN apt-get update && apt-get install openjdk-17-jdk -y