We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bec187f commit 5fd7df0Copy full SHA for 5fd7df0
docs/deploy.md
@@ -148,12 +148,19 @@ frontend:
148
index.html
149
README.md
150
```
151
+- move them to `docs` folder
152
+
153
+ ```sh
154
+ docs/index.html
155
+ docs/README.md
156
+ ```
157
158
- Create Dockerfile
159
160
```Dockerfile
161
FROM node:latest
162
LABEL description="A demo Dockerfile for build Docsify."
163
+ COPY docs /docs
164
WORKDIR /docs
165
RUN npm install -g docsify-cli@latest
166
EXPOSE 3000/tcp
@@ -164,8 +171,8 @@ frontend:
171
The current directory structure should be this:
172
173
```sh
167
- index.html
168
- README.md
174
175
169
176
Dockerfile
170
177
178
0 commit comments