Yeuem / Dockerfile
Arrcttacsrks's picture
Update Dockerfile
97d46fb verified
raw
history blame contribute delete
105 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
EXPOSE 7860
CMD ["python3", "-m", "http.server", "7860"]