Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 800 Bytes

README.md

File metadata and controls

43 lines (27 loc) · 800 Bytes

Getting Started

A guide on creating production-ready ReactJs container images without the use of a Dockerfile.

Prerequisites

Step 1: Clone the repository

git clone https://github.com/rijkerd/oci-react-js

Step 2: Build Image

pack build oci-react-js --builder=paketobuildpacks/builder:base --descriptor nginx.toml

Step 3: Verify Image

docker images | grep oci-react-js

Step 4: Run Image

docker run -d -p 8080:8080 oci-react-js

Step 5: Test the Application

Contribute

If you encounter any problems, please don't hesitate to report them by raising an issue.

References