Implement a cosmos-sdk chain faucet API #1

Merged
nabarun merged 7 commits from pm-add-faucet into main 2024-07-18 05:50:32 +00:00
Showing only changes of commit 1d7d022646 - Show all commits

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM node:20-bullseye
WORKDIR /app
# Copy the application code
COPY . .
RUN yarn && yarn build
# Expose the required port
EXPOSE 3000
# Run the app
CMD ["yarn", "start-faucet"]