arxiv-ease / Dockerfile
Aditi132's picture
Create Dockerfile
2fb98b8 verified
raw
history blame contribute delete
143 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip \
&& pip install -r requirements.txt
CMD ["python", "app.py"]