WaveExistence commited on
Commit
a653544
·
verified ·
1 Parent(s): aea26fe

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18-bullseye-slim
2
+ RUN apt-get update && \
3
+ apt-get install -y git
4
+ RUN git clone https://gitlab.com/amiminoru/merkava.git /app
5
+ WORKDIR /app
6
+ RUN chown -R 1000:1000 /app
7
+ RUN npm install
8
+ COPY Dockerfile greeting.md* .env* ./
9
+ RUN npm run build
10
+ EXPOSE 7860
11
+ ENV NODE_ENV=production
12
+ CMD [ "npm", "start" ]