ImgRecGen / Dockerfile
Rooni's picture
Update Dockerfile
ea69af8 verified
raw
history blame contribute delete
181 Bytes
FROM node:18
WORKDIR /app
COPY package.json ./
RUN npm install
RUN npm install express node-fetch body-parser
RUN npm install dotenv
COPY . .
EXPOSE 7860
CMD [ "node", "server.js" ]