Skip to content

Commit b5549a0

Browse files
revert base image to microsoft python:3.12-bullseye and remove yarn from base image
1 parent 7c2ce99 commit b5549a0

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/ContentProcessor/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
FROM python:3.11-slim-bullseye AS base
1+
FROM mcr.microsoft.com/devcontainers/python:3.12-bullseye AS base
22
WORKDIR /app
33

4+
RUN rm -f /etc/apt/sources.list.d/yarn.list && \
5+
apt-get update && \
6+
apt-get install -y poppler-utils && \
7+
rm -rf /var/lib/apt/lists/*
8+
49
# Install poppler-utils
510
RUN apt-get update && apt-get install -y poppler-utils && rm -rf /var/lib/apt/lists/*
611
FROM base AS builder

0 commit comments

Comments
 (0)