Skip to content
Draft
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
5 changes: 1 addition & 4 deletions src/aoai-api-simulator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
ARG network_type=unrestricted
ARG TIKTOKEN_CACHE_PATH=/app/tiktoken_cache

FROM python:3.12.1-slim-bullseye AS base
FROM python:3.12.1-bookworm AS base
WORKDIR /app

FROM base AS simulator-unrestricted-network

# Install gcc and python3-dev to support ARM architecture
RUN apt-get update && apt-get install -y gcc python3-dev

COPY ./requirements.txt ./
RUN pip install -r requirements.txt

Expand Down