This is my portfolio created using vscode-portfolio.
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Visit http://localhost:3000
-
Build the app:
npm run build
-
Start the production server:
npm start
-
Build the Docker image (default port 3000):
docker build -t ugurdindar-app . -
Run the container:
docker run -p 3000:3000 ugurdindar-app
-
To use a custom port:
docker build --build-arg PORT=8080 -t ugurdindar-app . docker run -e PORT=8080 -p 8080:8080 ugurdindar-app
