File tree 2 files changed +9
-9
lines changed 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- FROM node:lts-alpine3.10
1
+ FROM docker.io/library/ node:lts-alpine
2
2
3
3
WORKDIR /usr/src/app
4
4
5
+ ENV \
6
+ NODE_ENV=production \
7
+ PORT=3000 \
8
+ HOST=0.0.0.0
9
+
10
+ CMD [ "npm" , "start" ]
11
+
5
12
COPY package*.json ./
6
13
7
14
RUN npm i --only=production
8
15
9
16
# Bundle app source
10
17
COPY . .
11
-
12
- ENV NODE_ENV=production
13
- ENV PORT=3000
14
-
15
- EXPOSE 3000
16
- CMD [ "npm" , "start" ]
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " netlify-cms-github-oauth-provider" ,
3
- "version" : " 1.0.0" ,
4
3
"engines" : {
5
4
"node" : " >=7.x"
6
5
},
7
6
"description" : " netlify oauth github client sending token in form as netlify service itself" ,
8
- "repository" : " https://github.com/vencax /netlify-cms-github-oauth-provider" ,
7
+ "repository" : " https://github.com/appuio /netlify-cms-github-oauth-provider" ,
9
8
"main" : " index.js" ,
10
9
"scripts" : {
11
10
"test" : " echo \" Error: no test specified\" && exit 1" ,
You can’t perform that action at this time.
0 commit comments