From d225179fc2dd4ab17130ab39075ee06963113907 Mon Sep 17 00:00:00 2001 From: DenizD Date: Mon, 8 Jan 2024 09:51:48 +0000 Subject: [PATCH] Remove dockerfile and set image directly in the devcontainer.json. Also set future supported version to 1.20.4 --- .devcontainer/Dockerfile | 13 ------------- .devcontainer/devcontainer.json | 7 ++----- docs/index.md | 2 +- 3 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 1901774..0000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -# Use the official Python 3.11 image as the base image -FROM python:3.11 - -# Set the working directory in the container -WORKDIR /app - -COPY . . - -# Install the Python dependencies -RUN pip install --no-cache-dir -r requirements.txt - -# Copy the rest of the application code to the container - diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9cea4aa..9523417 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,9 +1,6 @@ { - "name": "Python 3.11 with MkDocs", - "build": { - "dockerfile": "Dockerfile", - "context": ".." - }, + "name": "Python 3.12.1 with MkDocs", + "image": "python:3.12.1", "postStartCommand": "pip install poetry && poetry install && poetry run mkdocs serve", "forwardPorts": [ 8000 diff --git a/docs/index.md b/docs/index.md index 93fd73a..b7affb5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -21,7 +21,7 @@ With Advanced Peripherals you can control your base in Minecraft only with messa #### Version support -| Supported Version | 1.16 | 1.17 | 1.18 | 1.19.2 | 1.19.3 | 1.19.4 | 1.20.1 | 1.20.2 | +| Supported Version | 1.16 | 1.17 | 1.18 | 1.19.2 | 1.19.3 | 1.19.4 | 1.20.1 | 1.20.4 | |-----------------------|------|------|------|--------|--------|--------|--------|--------| | Security patches | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :white_check_mark: | :o: | | Critical fixes | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :white_check_mark: | :o: |