Spaces:
Sleeping
Sleeping
# Use an official Python image as the base image | |
FROM python:3.7 | |
# Set the working directory inside the container | |
WORKDIR /app | |
# Copy the "proxy.py" file into the container | |
COPY proxy.py . | |
# Install aiohttp and any other dependencies | |
RUN pip install aiohttp | |
# Specify the entry point for running the script | |
CMD ["python", "proxy.py"] | |