sugxirv commited on
Commit
4573bf4
1 Parent(s): 84b9b9c

Create Dockerfile

Browse files

FROM 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" ]

Files changed (1) hide show
  1. Dockerfile +0 -0
Dockerfile ADDED
File without changes