# Build an image from a Dockerfile
> docker build -t <image_name> .
# List images
> docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<image_name> latest 47da5935a6e9 11 minutes ago 910MB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { normalize, schema } = require('normalizr'); | |
const data = [ | |
{ | |
"id": "123", | |
"author": { | |
"id": "1", | |
"name": "Paul" | |
}, | |
"title": "My awesome blog post", |