a2o / Dockerfile
dongsiqie's picture
Update Dockerfile
9be98bd verified
raw
history blame contribute delete
152 Bytes
FROM python:3.11
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 8000
CMD ["python3", "-u", "app.py"]