File size: 370 Bytes
1646fcd
 
 
ace69c9
f5458f1
1646fcd
 
 
 
 
f5458f1
 
1646fcd
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM node:18-bullseye-slim
RUN apt-get update && \
    apt-get install -y git
RUN git clone https://gitgud.io/Nika/aio-reverse-proxy.git /app
WORKDIR /app
RUN chown -R 1000:1000 /app
USER 1000
RUN npm install
COPY Dockerfile greeting.md* .env* ./
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
ENV NODE_OPTIONS="--max-old-space-size=12882"
CMD [ "npm", "start" ]