Learning / Dockerfile
Ricky01anjay's picture
Update Dockerfile
426269f verified
raw
history blame contribute delete
151 Bytes
FROM node:20-slim
WORKDIR /app
RUN npm init -y && npm install express node-cache axios uuid
COPY server.js .
EXPOSE 7860
CMD ["node", "server.js"]