diff options
author | 2022-10-31 21:23:59 +0400 | |
---|---|---|
committer | 2022-10-31 21:58:50 +0400 | |
commit | a35713e1dcb8a8223318b75e6f132332f65d31e8 (patch) | |
tree | 68f964a1f3a90fb0c1b255c318fe0c759f6ff6e0 /Dockerfile | |
parent | Merge pull request #151 from python-discord/bump-deps (diff) |
Bump Python To 3.11
Upgrade build image, configuration files, and documentation to python
3.11.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -FROM python:3.10-slim-buster as builder +FROM python:3.11-slim-buster as builder WORKDIR /nsjail @@ -20,7 +20,7 @@ RUN git clone -b master --single-branch https://github.com/google/nsjail.git . \ RUN make # ------------------------------------------------------------------------------ -FROM python:3.10-slim-buster as base +FROM python:3.11-slim-buster as base # Everything will be a user install to allow snekbox's dependencies to be kept # separate from the packages exposed during eval. |