forked from cerc-io/laconic-faucet
Prathamesh Musale
5f71d4cc2c
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: cerc-io/laconic-faucet#1 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
15 lines
183 B
Docker
15 lines
183 B
Docker
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 ["node", "dist/index.js"]
|