Skip to content

Commit 5954eba

Browse files
committed
Merge branch 'release/0.1.0'
2 parents 65e753f + 284e64c commit 5954eba

15 files changed

+2276
-5
lines changed

.dockerignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
**/*.csv
2+
**/*.csv.bz2
3+
**/*.csv.gz
4+
**/*.csv.xz
5+
**/*.ods
6+
**/*.pyc
7+
**/*.xls
8+
**/*.xlsx
9+
**/*.zip
10+
**/__pycache__
11+
*.dump
12+
*.dump.gz
13+
.dockerignore
14+
.git
15+
.gitignore
16+
.pytest_cache
17+
Dockerfile
18+
README.md
19+
build/
20+
collected-static/
21+
data/
22+
dist/
23+
docker/data/
24+
public/

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM python:3.11-slim-bookworm
1+
FROM python:3.12-slim-bookworm
22

33
ENV PYTHONUNBUFFERED=1
44
ARG DEV_BUILD
55
WORKDIR /app
66

77
RUN apt update \
88
&& apt upgrade -y \
9-
&& apt install -y build-essential python3-dev wget \
9+
&& apt install -y build-essential ffmpeg python3-dev wget \
1010
&& apt purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
1111
&& apt clean \
1212
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)