File size: 211 Bytes
921d6d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.10-slim
WORKDIR /app
COPY index.html .
COPY server.py .
COPY demo_data/ ./demo_data/
RUN useradd -m -u 1000 user
RUN chown -R user:user /app
USER user
EXPOSE 7860
CMD ["python3", "server.py"]
|