Skip to content

Commit 210752b

Browse files
committed
container: python is from uv, use regular debian base image
1 parent 14914b6 commit 210752b

File tree

3 files changed

+266
-237
lines changed

3 files changed

+266
-237
lines changed

.dockerignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
*.swp
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12-slim-bookworm
1+
FROM debian:bookworm-slim
22
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
33

44
RUN apt-get update \

0 commit comments

Comments
 (0)