Spaces:
Build error
Build error
Arinnouncer
commited on
Commit
•
93d340c
1
Parent(s):
a37c257
Create Dockerfile
Browse filesFROM node:18-bullseye-slim
RUN apt-get update && \
apt-get install -y git
RUN git clone https://gitgud.io/khanon/oai-reverse-proxy.git /app
WORKDIR /app
RUN npm install
COPY Dockerfile greeting.md* .env* ./
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
CMD [ "npm", "start" ]