NikaMimi commited on
Commit
1646fcd
·
verified ·
1 Parent(s): f413084

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -3
Dockerfile CHANGED
@@ -1,6 +1,14 @@
1
- FROM khanonci/oai-reverse-proxy:latest
 
 
 
2
  WORKDIR /app
3
- COPY greeting.md* .env* ./
 
 
 
 
4
  EXPOSE 7860
5
  ENV NODE_ENV=production
6
- ENV NODE_OPTIONS="--max-old-space-size=12882"
 
 
1
+ FROM node:18-bullseye-slim
2
+ RUN apt-get update && \
3
+ apt-get install -y git
4
+ RUN git clone https://gitgud.io/SternAnon/aoi-rose-foxy.git /app
5
  WORKDIR /app
6
+ RUN chown -R 1000:1000 /app
7
+ USER 1000
8
+ RUN npm install
9
+ COPY Dockerfile greeting.md* .env* ./
10
+ RUN npm run build
11
  EXPOSE 7860
12
  ENV NODE_ENV=production
13
+ ENV NODE_OPTIONS="--max-old-space-size=12882"
14
+ CMD [ "npm", "start" ]