streamer / Dockerfile
hekod19045's picture
Update Dockerfile
8f5a736 verified
raw
history blame contribute delete
269 Bytes
FROM mbonea1234/bottle678:latest
# Create a non-root user
RUN useradd -ms /bin/bash admin
# Set the working directory
RUN chown -R admin:admin /usr/src/nginx
RUN chmod 755 /usr/src/nginx
CMD export PYTHONPATH="${PYTHONPATH}:./src" && python3 ./src/app.py
EXPOSE 8080