PY_ZIP_EXEC / Dockerfile
shethjenil's picture
Upload 2 files
3e5b3ec verified
raw
history blame contribute delete
153 Bytes
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"]