Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
downgrade to py3.9, 3.11 also doesn't work, someone should fix this e…
Browse files Browse the repository at this point in the history
…ventually
  • Loading branch information
nikhiljha committed Apr 21, 2024
1 parent fcd4f68 commit 0b604f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.11-slim
FROM docker.io/python:3.9-slim

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Expand All @@ -16,7 +16,7 @@ RUN pip install virtualenv
RUN install -d --owner=nobody /opt/ircbot /opt/ircbot/venv

COPY requirements.txt /opt/ircbot/
RUN virtualenv -ppython3.11 /opt/ircbot/venv \
RUN virtualenv -ppython3.9 /opt/ircbot/venv \
&& /opt/ircbot/venv/bin/pip install \
-r /opt/ircbot/requirements.txt

Expand Down

0 comments on commit 0b604f3

Please sign in to comment.