We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14914b6 + 210752b commit 01a27ebCopy full SHA for 01a27eb
.dockerignore
@@ -0,0 +1,29 @@
1
+# Source control
2
+.git
3
+.gitignore
4
+
5
+# everything in gitignore
6
+*.py[cod]
7
+*.swp
8
+coldfront.egg-info
9
+dist
10
+build
11
+*._*
12
+*.DS_Store
13
14
+env/
15
+venv/
16
+static_root/
17
+db.sqlite3
18
+local_data/
19
+site/
20
+local_settings.py
21
+local_strings.py
22
+coldfront.db
23
+*.code-workspace
24
+.vscode
25
+db.json
26
+.env
27
+.devcontainer/*
28
+.bin/*
29
+coldfront-django.log*
Dockerfile
@@ -1,4 +1,4 @@
-FROM python:3.12-slim-bookworm
+FROM debian:bookworm-slim
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
RUN apt-get update \
0 commit comments