diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..0cfbf09 --- /dev/null +++ b/.env.example @@ -0,0 +1,3 @@ +PORT=8002 +UWSGI_PROCESSES=4 +UWSGI_THREADS=4 diff --git a/.gitignore b/.gitignore index e9fb3cf..0a3a81a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ -venv/ -*.pyc -__pycache__/ +.env .vscode -privacy.txt +__pycache__/ +dist/ +docker-compose.yml privacy.md -/dist/ \ No newline at end of file +privacy.txt +*.pyc +venv/ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a2db183 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM alpine:3.20 + +ENV APP_ENV=/opt/venv +ENV PATH="${APP_ENV}/bin:$PATH" + +RUN apk add --no-cache py3-pip uwsgi-python3 && \ + python3 -m venv $APP_ENV && \ + $APP_ENV/bin/pip install --no-cache-dir pip structables && \ + adduser -S -D -H structables + +COPY entrypoint.sh /entrypoint.sh + +EXPOSE 8002 + +USER structables + +ENTRYPOINT ["/entrypoint.sh"] diff --git a/README.md b/README.md index 74970cb..bc1b01f 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ An open source alternative front-end to Instructables. This is a fork of