Cradicle Explorer
containers
Info
Issues
Patches
Wallets
Source
Source
backend
frontend
public
src
.dockerignore
.env
.env.example
.eslintrc.json
.gitignore
Dockerfile
README.md
dev.Dockerfile
next.config.mjs
package.json
tsconfig.json
yarn.lock
README.md
docker-compose.yml
/
frontend
/ dev.Dockerfile
dev.Dockerfile
1
FROM node:lts
2
3
WORKDIR /app
4
5
ENV NODE_ENV=development
6
7
CMD yarn && yarn dev