Skip to content

Commit

Permalink
fix: api/Dockerfile to reduce vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Nov 22, 2024
1 parent 9a8bd76 commit dcbbb72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a specific version for the base image
FROM python:3.13.0a6-slim AS build-env
FROM python:3.14.0a1-slim AS build-env

# Set working directory
WORKDIR /api
Expand All @@ -17,7 +17,7 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY api/ ./api/

# Actual runtime image
FROM python:3.13.0a6-slim
FROM python:3.14.0a1-slim

# Set working directory
WORKDIR /api
Expand Down

0 comments on commit dcbbb72

Please sign in to comment.