aiproject / Dockerfile
jbraha's picture
'mint autosave'
f936c34
raw
history blame
No virus
148 Bytes
FROM python:3.8.9
WORKDIR /app
# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
COPY . /app
#CMD