hyprdash/dockerfile
2024-09-27 18:12:53 +00:00

20 lines
500 B
Plaintext

# Start with your base image
FROM python:3.12.3-slim
# Set the working directory in the container
WORKDIR /app
# Copy the requirements file into the container at /app
COPY requirements.txt .
# Install any needed packages specified in requirements.txt
RUN pip install cherrypy
# Copy the rest of your application code into the container at /app
COPY . .
# Make port 8080 available to the world outside this container
EXPOSE 8080
# Run app.py when the container launches
CMD ["python", "app.py"]