aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.dockerignore2
-rw-r--r--README.md2
-rw-r--r--config/snekbox.cfg (renamed from snekbox.cfg)0
-rw-r--r--docker/venv.Dockerfile5
-rw-r--r--scripts/.profile2
-rw-r--r--snekbox/nsjail.py4
6 files changed, 9 insertions, 6 deletions
diff --git a/.dockerignore b/.dockerignore
index 4f43e08..d030b2f 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -3,7 +3,7 @@
# Make exceptions for what's needed
!snekbox
-!snekbox.cfg
+!config/
!tests
!Pipfile
!Pipfile.lock
diff --git a/README.md b/README.md
index f12d236..70a029b 100644
--- a/README.md
+++ b/README.md
@@ -144,7 +144,7 @@ The alias can be found in `./scripts/.profile`, which is automatically added whe
[1]: https://dev.azure.com/python-discord/Python%20Discord/_apis/build/status/Snekbox?branchName=master
[2]: https://dev.azure.com/python-discord/Python%20Discord/_build/latest?definitionId=13&branchName=master
-[`snekbox.cfg`]: snekbox.cfg
+[`snekbox.cfg`]: config/snekbox.cfg
[`snekapi.py`]: snekbox/api/snekapi.py
[`resources`]: snekbox/api/resources
[`docker run`]: https://docs.docker.com/engine/reference/commandline/run/
diff --git a/snekbox.cfg b/config/snekbox.cfg
index 38f3ade..38f3ade 100644
--- a/snekbox.cfg
+++ b/config/snekbox.cfg
diff --git a/docker/venv.Dockerfile b/docker/venv.Dockerfile
index fe5b10d..5c0fcfc 100644
--- a/docker/venv.Dockerfile
+++ b/docker/venv.Dockerfile
@@ -6,7 +6,7 @@ ENV PIP_NO_CACHE_DIR=false \
PIPENV_HIDE_EMOJIS=1 \
PIPENV_NOSPIN=1
-COPY Pipfile Pipfile.lock snekbox.cfg /snekbox/
+COPY Pipfile Pipfile.lock /snekbox/
WORKDIR /snekbox
RUN if [ -n "${DEV}" ]; \
@@ -15,3 +15,6 @@ RUN if [ -n "${DEV}" ]; \
else \
pipenv install --deploy --system; \
fi
+
+# At the end to avoid re-installing dependencies when only a config changes.
+COPY config/ /snekbox/config
diff --git a/scripts/.profile b/scripts/.profile
index 69ad959..9bf8e09 100644
--- a/scripts/.profile
+++ b/scripts/.profile
@@ -15,7 +15,7 @@ nsjpy() {
echo "${MEM_MAX}" > /sys/fs/cgroup/memory/NSJAIL/memory.memsw.limit_in_bytes
nsjail \
- --config "${NSJAIL_CFG:-/snekbox/snekbox.cfg}" \
+ --config "${NSJAIL_CFG:-/snekbox/config/snekbox.cfg}" \
$nsj_args -- \
/usr/local/bin/python -Iqu -c "$@"
}
diff --git a/snekbox/nsjail.py b/snekbox/nsjail.py
index c6a81b1..cafde6d 100644
--- a/snekbox/nsjail.py
+++ b/snekbox/nsjail.py
@@ -24,7 +24,7 @@ CGROUP_PIDS_PARENT = Path("/sys/fs/cgroup/pids/NSJAIL")
CGROUP_MEMORY_PARENT = Path("/sys/fs/cgroup/memory/NSJAIL")
NSJAIL_PATH = os.getenv("NSJAIL_PATH", "/usr/sbin/nsjail")
-NSJAIL_CFG = os.getenv("NSJAIL_CFG", "./snekbox.cfg")
+NSJAIL_CFG = os.getenv("NSJAIL_CFG", "./config/snekbox.cfg")
MEM_MAX = 52428800
@@ -32,7 +32,7 @@ class NsJail:
"""
Core Snekbox functionality, providing safe execution of Python code.
- See snekbox.cfg for the default NsJail configuration.
+ See config/snekbox.cfg for the default NsJail configuration.
"""
def __init__(self, nsjail_binary: str = NSJAIL_PATH, python_binary: str = sys.executable):