Spaces:
Sleeping
Sleeping
# Use your previously built image as the base | |
FROM circulartextapp/readspaceout | |
# Set the working directory | |
WORKDIR /app | |
# Copy all contents in the current directory to the /app directory in the container | |
COPY . /app | |
# Change permissions on the /app directory | |
RUN chmod -R 777 /app | |
# Expose the port that your FastAPI application is running on | |
EXPOSE 80 | |
# Command to start your FastAPI application | |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--reload"] | |