quote-api / Dockerfile
akkun3704's picture
Update Dockerfile
151fa0c
raw
history blame
217 Bytes
FROM node:latest
RUN apt-get update && apt-get install -y build-essential gcc wget git libvips && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
EXPOSE 7860
CMD ["npm", "start"]