Skip to content

My portfolio website powered with React

Notifications You must be signed in to change notification settings

ymyzk/portfolio

Repository files navigation

portfolio

Build

Development

$ npm run dev

Deployment

The Docker image only contains the exported files. Please copy files out of the image and use an HTTP server you like.

$ image_name=ymyzk/portfolio:latest
$ docker pull $image_name
$ container_id=$(docker create $image_name)
$ docker cp $container_id:/app/out/ ./dest
$ docker rm $container_id

Notes

  • If you make a change to a file in /public/static, please rename it because the previous version may be cached.