Skip to content

Commit

Permalink
Revert to python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jotonedev committed Oct 26, 2023
1 parent bff46e0 commit 1dcf803
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-bookworm as builder
FROM python:3.11-bookworm as builder

ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
Expand All @@ -24,7 +24,7 @@ RUN mkdir -p /build/wheels && poetry export -f requirements.txt --output /build/
WORKDIR /build/wheels
RUN pip wheel --no-cache-dir --no-deps --wheel-dir /build/wheels -r /build/wheels/requirements.txt

FROM python:3.12-slim-bookworm
FROM python:3.11-slim-bookworm

# Accept secrets as arguments
ARG TOKEN="discord_token"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dsmusic"
version = "0.4.0"
version = "0.4.1"
description = "A simple music bot"
license = "MIT"
authors = ["John Toniutti <[email protected]>"]
Expand Down

0 comments on commit 1dcf803

Please sign in to comment.