Spaces:
Running
Running
File size: 153 Bytes
3e5b3ec |
1 2 3 4 5 6 7 |
FROM python:3.11-slim
RUN useradd -ms /bin/bash myuser
WORKDIR /code
COPY . .
RUN chown -R myuser:myuser /code
USER myuser
CMD ["python","app.zip"] |