Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/base:ubuntu
FROM mcr.microsoft.com/devcontainers/python:3.14-bookworm

ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Asia/Tokyo
Expand Down Expand Up @@ -47,19 +47,6 @@ RUN wget --progress=dot:giga https://github.com/hadolint/hadolint/releases/lates

# ----------- Base setup complete -----------

# Install Python
ARG PYTHON_VERSION=3.14
RUN apt-get update \
&& apt-get install --no-install-recommends -y software-properties-common \
&& add-apt-repository -y ppa:deadsnakes/ppa \
&& apt-get update \
&& apt-get install --no-install-recommends -y python${PYTHON_VERSION} python${PYTHON_VERSION}-dev \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* \
&& ln -sf /usr/bin/python${PYTHON_VERSION} /usr/bin/python3 \
&& ln -sf /usr/bin/python${PYTHON_VERSION} /usr/bin/python

# pyright install
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
&& apt-get install --no-install-recommends -y nodejs \
Expand Down