Spaces:
Running
Running
File size: 228 Bytes
895dc73 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM python:3.12-alpine
RUN adduser -D -u 1000 appuser
WORKDIR /app
COPY --chown=1000:1000 static_server.py ./static_server.py
COPY --chown=1000:1000 dist ./dist
USER 1000
EXPOSE 7860
CMD ["python", "/app/static_server.py"]
|