Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM python:3.13.7-slim as builder
FROM python:3.14.2-slim@sha256:1a3c6dbfd2173971abba880c3cc2ec4643690901f6ad6742d0827bae6cefc925 as builder
LABEL maintainer="ODL DevOps <mitx-devops@mit.edu>"

# Set environment variables for build
Expand Down Expand Up @@ -45,7 +45,7 @@ ENV NODE_ENV=production
RUN yarn install --immutable && yarn build

# Runtime stage
FROM python:3.13.7-slim as runtime
FROM python:3.14.2-slim@sha256:1a3c6dbfd2173971abba880c3cc2ec4643690901f6ad6742d0827bae6cefc925 as runtime

# Set environment variables for production
ENV PYTHONUNBUFFERED=1 \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "ocw-studio"
version = "0.0.0"
description = "OCW Studio manages deployments for OCW courses"
authors = [{ name = "MITODL" }]
requires-python = ">=3.13,<3.14"
requires-python = ">=3.14,<3.15"
readme = "README.md"
license = "BSD-3"
classifiers = [
Expand Down
Loading