https://movie-app.oceceli.com/discover
You'll need a themoviedb API key.
When you acquire the key, rename .env.example to .env and place it in the root directory with filename
/.env
API_TOKEN=<Your token>
Make sure to install the dependencies:
npm install
Start the development server on http://localhost:3000
npm run dev
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Enter your API key in the Dockerfile
The image output will be ~70mb in size
docker image build --tag movie-app .
docker container run -d -p 3000:3000 movie-app