Implement a cosmos-sdk chain faucet API #1
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
Loading…
Reference in New Issue
Block a user