tiktoken-calculator / Dockerfile
github-actions[bot]
Sync to HuggingFace Spaces
4f34e0f
raw
history blame contribute delete
No virus
138 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app
RUN pip install -r requirements.txt
COPY . /app
CMD ["python", "app.py"]