FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github-docs/Dockerfile at main · sputier/github-docs · GitHub
sputier
/
github-docs
Public
forked from
github/docs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
github-docs
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
67 lines (52 loc) · 2.09 KB
Breadcrumbs
github-docs
/
Dockerfile
Copy path
File metadata and controls
67 lines (52 loc) · 2.09 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#
This Dockerfile can be used for docker-based deployments to platforms
#
like Now or Moda, but it is currently _not_ used by our Heroku deployments
#
It uses three multi-stage builds: `installation`, `bundles`, and the main build.
#
--------------------------------------------------------------------------------
#
INSTALLATION IMAGE
#
A temporary image that installs production-only dependencies
FROM
node:14-alpine as installation
ENV
NODE_ENV production
WORKDIR
/usr/src/docs
COPY
package*.json ./
#
Install the project's dependencies
RUN
npm ci
#
--------------------------------------------------------------------------------
#
BUNDLE IMAGE
#
A temporary image that installs dependencies and builds the production-ready front-end bundles.
FROM
node:14-alpine as bundles
WORKDIR
/usr/src/docs
#
Install the files used to create the bundles
COPY
package*.json ./
COPY
javascripts ./javascripts
COPY
stylesheets ./stylesheets
COPY
lib ./lib
COPY
webpack.config.js ./webpack.config.js
#
Install the project's dependencies and build the bundles
RUN
npm ci && npm run build
#
--------------------------------------------------------------------------------
#
MAIN IMAGE
FROM
node:14-alpine
#
Let's make our home
WORKDIR
/usr/src/docs
#
Ensure our node user owns the directory we're using
RUN
chown node:node /usr/src/docs -R
#
This should be our normal running user
USER
node
#
Copy our dependencies
COPY
--chown=node:node --from=installation /usr/src/docs/node_modules /usr/src/docs/node_modules
#
Copy our front-end code
COPY
--chown=node:node --from=bundles /usr/src/docs/dist /usr/src/docs/dist
#
We should always be running in production mode
ENV
NODE_ENV production
#
Copy only what's needed to run the server
COPY
--chown=node:node assets ./assets
COPY
--chown=node:node content ./content
COPY
--chown=node:node data ./data
COPY
--chown=node:node includes ./includes
COPY
--chown=node:node lib ./lib
COPY
--chown=node:node middleware ./middleware
COPY
--chown=node:node translations ./translations
COPY
--chown=node:node server.js ./server.js
COPY
--chown=node:node package*.json ./
EXPOSE
443
CMD
[
"node"
,
"server.js"
]
Back
|
FazBrowse Home
|
New Git URL