THost / Dockerfile
Staticaliza's picture
Update Dockerfile
82c1537 verified
raw
history blame
146 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
EXPOSE 5678
COPY . .
CMD [ "python3", "app.py" ]