DevToolKit / dockerfile
acecalisto3's picture
Update dockerfile
94a7255 verified
raw
history blame
No virus
123 Bytes
FROM python:3.8-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 5555
CMD ["python", "app.py"]