scottzilla-payments / Dockerfile
ScottzillaSystems's picture
add: Dockerfile
944fee1 verified
raw
history blame contribute delete
237 Bytes
FROM node:20-slim
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY server.mjs .
COPY pricing.json .
EXPOSE 7860
CMD ["node", "server.mjs"]