Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hayley committed Feb 12, 2020
1 parent ef76255 commit 295f753
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chapters/chapter2.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description:
'This chapter will teach you even more stuff and help you learn some new
concepts.'
prev: /chapter1
next: null
next: /chapter3
type: chapter
id: 2
---
10 changes: 10 additions & 0 deletions chapters/chapter3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: 'Chapter 3: Trying more things '
description:
'This chapter will teach you even more stuff and help you learn some new
concepts.'
prev: /chapter2
next: null
type: chapter
id: 3
---
3 changes: 2 additions & 1 deletion dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ FROM node:10
# Add the package.json file and build the node_modules folder
WORKDIR /app
COPY ./package*.json ./
RUN mkdir node_modules && npm install
RUN mkdir node_modules
RUN npm install --g gatsby-cli
RUN npm install

0 comments on commit 295f753

Please sign in to comment.