Skip to content

Commit 493e4a0

Browse files
author
JelteMX
committed
Fix mendix#741 Starting docker fails. Fixed setup
1 parent 8547570 commit 493e4a0

File tree

5 files changed

+11
-14
lines changed

5 files changed

+11
-14
lines changed

Dockerfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,25 @@ FROM node:8
22

33

44
# Download and install hugo
5-
ENV HUGO_VERSION 0.25.1
5+
ENV HUGO_VERSION 0.31.1
66
ENV HUGO_BINARY hugo_${HUGO_VERSION}_Linux-64bit.deb
77

88
ADD https://github.com/spf13/hugo/releases/download/v${HUGO_VERSION}/${HUGO_BINARY} /tmp/hugo.deb
99
RUN dpkg -i /tmp/hugo.deb \
1010
&& rm /tmp/hugo.deb
1111

12+
RUN npm i -g yarn
1213
RUN yarn add gulp -g --silent
1314

1415
# Based on guidance at http://jdlm.info/articles/2016/03/06/lessons-building-node-app-docker.html
1516
RUN useradd --user-group --create-home app
1617

1718
ENV HOME=/home/app
19+
WORKDIR $HOME
1820

19-
COPY package.json $HOME/docs/
21+
COPY package.json $HOME/
22+
RUN yarn
23+
ENV PATH $HOME/node_modules/.bin:$PATH
2024
RUN chown -R app:app $HOME/*
2125

2226
USER app

Gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ gulp.task('dev', ``, ['dev:sass', 'build:js', 'write:menu', 'build:hugo'], done
200200
});
201201

202202
gulp.task('serve', `Serve`, done => {
203-
runSequence('clean', 'dev');
203+
runSequence('clean', ['build:menu', 'build:sass', 'build:js'], 'dev');
204204
})
205205

206206
/*************************************************

README.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,7 @@ To use it, follow these steps:
6969
docker-compose build
7070
```
7171

72-
3. Once the above command finishes, run:
73-
74-
```sh
75-
docker-compose run app yarn
76-
```
77-
78-
which will install the node dependencies.
79-
4. Then run:
72+
3. Then run:
8073

8174
```sh
8275
docker-compose up

docker-compose.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ services:
44
build: .
55
volumes:
66
- .:/home/app/docs
7-
command: yarn run serve
7+
- /home/app/docs/node_modules/
8+
command: yarn run docker
89
ports:
910
- "4000:4000"
10-
volumes:
11-
node-modules:

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build-windows-prod": "SET HUGO_ENV production; .\\node_modules\\.bin\\gulp build",
1010
"build-windows-test": "SET HUGO_ENV test; .\\node_modules\\.bin\\gulp build",
1111
"serve": "./node_modules/.bin/gulp serve",
12+
"docker": "gulp serve",
1213
"serve-test": "HUGO_ENV=test ./node_modules/.bin/gulp serve",
1314
"serve-production": "HUGO_ENV=production ./node_modules/.bin/gulp serve",
1415
"help": "./node_modules/.bin/gulp help"

0 commit comments

Comments
 (0)