buildkite / Dockerfile
tonne's picture
Update buildkite
26f4d6f
raw
history blame contribute delete
186 Bytes
FROM python:3.11.6-alpine3.18
RUN apt-get update && apt-get install -y curl
USER tonne
WORKDIR /code
RUN pip install fastapi uvicorn
COPY . /code
CMD ["uvicorn", "main:app", "--reload"]