lmszx / Dockerfile
Sunrusojsis's picture
Create Dockerfile
d7af7cc verified
raw
history blame
338 Bytes
# 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"]