walletpass / Dockerfile
ardasen's picture
Create Dockerfile
352a903 verified
raw
history blame contribute delete
207 Bytes
# 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"]