Arinnouncer commited on
Commit
63c0333
1 Parent(s): 6f3c250

Create HUH

Browse files
Files changed (1) hide show
  1. HUH +21 -0
HUH ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18-bullseye-slim
2
+
3
+ RUN apt-get update && \
4
+
5
+ apt-get install -y git
6
+
7
+ RUN git clone https://gitgud.io/khanon/oai-reverse-proxy.git /app
8
+
9
+ WORKDIR /app
10
+
11
+ RUN npm install
12
+
13
+ COPY Dockerfile greeting.md* .env* ./
14
+
15
+ RUN npm run build
16
+
17
+ EXPOSE 7860
18
+
19
+ ENV NODE_ENV=production
20
+
21
+ CMD [ "npm", "start" ]