Skip to content

Commit

Permalink
Update Dockerfile. Just a test for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bensge committed Aug 24, 2024
1 parent 47c4432 commit 4598124
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
FROM python:3.11-slim
FROM python:3.12.5-bookworm

RUN apt-get update
WORKDIR /app

RUN apt-get update && apt-get install -y \
curl \
pkg-config \
gcc \
mariadb-client \
libmariadb-dev-compat \
libmariadb-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

RUN pip install uv

WORKDIR /app

COPY pyproject.toml pyproject.toml
RUN uv sync
COPY . .

0 comments on commit 4598124

Please sign in to comment.