Spaces:
Paused
Paused
| # Use the official Node.js 14 image | |
| FROM node:18 | |
| # Set working directory | |
| WORKDIR /app | |
| RUN npm install fastify passkit-generator | |
| COPY . . | |
| EXPOSE 7860 | |
| # Command to run the server | |
| CMD ["node", "index.js"] |