Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.1
orbs:
python: circleci/python@2.2.0
python: circleci/python@3.3.0
docker: circleci/[email protected]
github-cli: circleci/[email protected]
codecov: codecov/[email protected]
Expand Down
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 AS builder
FROM python:3.14 AS builder

WORKDIR /app

Expand All @@ -12,7 +12,7 @@ COPY ./src/bss_web_file_server/__init__.py ./src/bss_web_file_server/
RUN pip wheel --wheel-dir ./wheels .


FROM python:3.13-slim AS app
FROM python:3.14-slim AS app

# Create a non-root user
RUN adduser --system --group --home /home/nonroot nonroot
Expand Down