spliffy.dockerfile 198 B

1234567891011
  1. FROM node:14-buster-slim
  2. RUN apt update && apt install -y libpq-dev g++ make git python
  3. COPY package.json /app/
  4. WORKDIR /app
  5. RUN npm install
  6. COPY . /app
  7. EXPOSE 1420
  8. CMD ["node", "/app/start.js"]