creacion de imagen docker
Mi primaera imagen de docker
This commit is contained in:
parent
4b6b5476c5
commit
425b9b4d7a
6
app/Dockerfile
Normal file
6
app/Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM node:12-alpine
|
||||
RUN apk add --no-cache python g++ make
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN yarn install --production
|
||||
CMD ["node", "src/index.js"]
|
@ -53,7 +53,7 @@ function TodoListCard() {
|
||||
<React.Fragment>
|
||||
<AddItemForm onNewItem={onNewItem} />
|
||||
{items.length === 0 && (
|
||||
<p className="text-center">No items yet! Add one above!</p>
|
||||
<p className="text-center">Que paso amiguito aun no hay items en la Lista!!. Agrega unos para porbar!!</p>
|
||||
)}
|
||||
{items.map(item => (
|
||||
<ItemDisplay
|
||||
|
Loading…
Reference in New Issue
Block a user