qatool / Dockerfile
naotakigawa's picture
init
d14246a
raw
history blame
141 Bytes
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip3 install --upgrade pip && \
pip3 install --no-cache-dir -r requirements.txt
EXPOSE 8501