diff --git a/CHANGELOG.md b/CHANGELOG.md index 54b6ce3d..ef4eaa4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ **Deployment** * `docker-compose` now provides a basic nginx configuration and deploys nginx on port 80 +* `Dockerfile` now installs `python3` and `python3-dev` instead of `python` and `python-dev` because Alpine no longer provides those dependencies **Miscellaneous** * The `get_config` and `get_page` config utilities now use SQLAlchemy Core instead of SQLAlchemy ORM for slight speedups diff --git a/Dockerfile b/Dockerfile index 0d0553ff..91f8ed2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ RUN mkdir -p /opt/CTFd /var/log/CTFd /var/uploads RUN apk update && \ apk add --no-cache \ - python \ - python-dev \ + python3 \ + python3-dev \ linux-headers \ libffi-dev \ gcc \