Skip to content

Commit

Permalink
set python version 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
irumaru committed Oct 11, 2023
1 parent 29849f2 commit 056173b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Builder image ####
FROM python:slim AS builder
FROM python:3.11-slim AS builder

WORKDIR /home

Expand All @@ -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
Expand Down

0 comments on commit 056173b

Please sign in to comment.