Skip to content

Commit 1bc2937

Browse files
authored
Fix#65: Updated 1.5.2 (#66)
1 parent 221ad61 commit 1bc2937

5 files changed

+8
-9
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM alpine:latest
1+
FROM alpine:3.18.3
22

3-
ENV MKDOCS_VERSION=1.4.2 \
3+
ENV MKDOCS_VERSION=1.5.2 \
44
DOCS_DIRECTORY='/mkdocs' \
55
LIVE_RELOAD_SUPPORT='false' \
66
ADD_MODULES='false' \
@@ -29,4 +29,4 @@ RUN \
2929
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/* && \
3030
chmod 600 /root/.ssh/config
3131

32-
CMD ["/usr/bin/bootstrap", "start"]
32+
CMD ["/usr/bin/python3", "/bootstrap/main.py", "start"]

Dockerfile-arm64v8

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM arm64v8/alpine
22

3-
ENV MKDOCS_VERSION=1.4.2 \
3+
ENV MKDOCS_VERSION=1.5.2 \
44
DOCS_DIRECTORY='/mkdocs' \
55
LIVE_RELOAD_SUPPORT='false' \
66
ADD_MODULES='false' \
@@ -29,4 +29,4 @@ RUN \
2929
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/* && \
3030
chmod 600 /root/.ssh/config
3131

32-
CMD ["/usr/bin/bootstrap", "start"]
32+
CMD ["/usr/bin/python3", "/bootstrap/main.py", "start"]

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ verify_ssl = true
88
[packages]
99

1010
[requires]
11-
python_version = "3.8"
11+
python_version = "3.11"

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ MkDocs is a fast, simple and downright gorgeous static site generator that's gea
2121
Purpose of this image was to simplify the process of deploying MkDocs. This image is based on Alpine Linux to minimize the size of the image.
2222

2323
### ARM based image
24-
To build ARM based image Docker Desktop for macOS can be used.
2524

2625
Example build:
2726

2827
```bash
29-
docker build --file Dockerfile-arm64v8 -t polinux/mkdocs:arm64v8-1.2.2 .
28+
docker buildx build --platform linux/arm64 --file Dockerfile-arm64v8 -t polinux/mkdocs:arm64v8-1.2.2 .
3029
```
3130

3231
### Docker compose example

docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
mkdocs:
55
container_name: mkdocs
6-
image: polinux/mkdocs:1.4.2
6+
image: polinux/mkdocs:1.5.2
77
restart: always
88
ports:
99
- "8000:8000"

0 commit comments

Comments
 (0)