19 lines
545 B
Docker
19 lines
545 B
Docker
|
# Use an official Python runtime as a parent image
|
||
|
FROM python:3.12-slim
|
||
|
|
||
|
# Set the working directory in the container to /app
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Add the current directory contents into the container at /app
|
||
|
ADD . /app
|
||
|
|
||
|
# Install any needed packages specified in requirements.txt
|
||
|
RUN pip install uv
|
||
|
RUN uv pip install -r requirements.txt
|
||
|
RUN uv pip install -e .
|
||
|
|
||
|
# Make port 80 available to the world outside this container
|
||
|
EXPOSE 80
|
||
|
|
||
|
# Run the command to start uvicorn
|
||
|
CMD ["uvicorn", "hellocomputer.main:app", "--host", "0.0.0.0", "--port", "80"]
|