From 056173b8cc05e3b2057f18f157bd0c633eec9440 Mon Sep 17 00:00:00 2001 From: irumaru Date: Wed, 11 Oct 2023 18:44:47 +0000 Subject: [PATCH] set python version 3.11 --- container/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/container/Dockerfile b/container/Dockerfile index 9a6c105..2036b61 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -1,5 +1,5 @@ #### Builder image #### -FROM python:slim AS builder +FROM python:3.11-slim AS builder WORKDIR /home @@ -14,10 +14,10 @@ RUN git clone https://github.com/nsslums/cit-bot.git #### app image #### -FROM python:slim +FROM python:3.11-slim # library install -RUN apt update && apt install gcc && pip install discord.py load_dotenv json-tricks +RUN pip install discord.py load_dotenv json-tricks # disable cache ARG NOCACHE=1