Trust-Wallet / Dockerfile
HenzHosting's picture
Create Dockerfile
1b5d4ca verified
raw
history blame contribute delete
354 Bytes
# Use a lightweight Node.js image
FROM node:18-bullseye
# Set working directory
WORKDIR /app
RUN git clone https://github.com/yummi184/Trust-wallet-clone.git /app
# Set correct permissions
RUN chmod -R 777 /app
# Install project dependencies
WORKDIR /app
RUN npm install
# Expose a port
EXPOSE 7860
# Start the application
CMD ["node", "server.js"]