Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.0a4-slim as build
FROM python:3.14.3-slim as build
WORKDIR /wheels
RUN apk add --no-cache \
ncurses-dev \
Expand All @@ -7,7 +7,7 @@ COPY docker_reqs.txt /opt/instainfo/requirements.txt
RUN pip3 wheel -r /opt/instainfo/requirements.txt


FROM python:3.13.0a4-slim
FROM python:3.14.3-slim
WORKDIR /home/instainfo
RUN adduser -D instainfo
Copy link

Copilot AI Feb 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'adduser -D' command is an Alpine Linux syntax. For Debian-based images (which python:3.x-slim uses), the correct syntax is 'useradd -m' or 'adduser --disabled-password'. This command will fail when the container is built.

Copilot uses AI. Check for mistakes.

Expand Down
Loading