# Use the official image as a parent image | |
FROM ghcr.io/alexta69/metube | |
# Ensure the download directory has the right permissions | |
RUN mkdir -p /downloads && chmod 777 /downloads | |
# Expose port 8081 to the outside world | |
EXPOSE 8081 | |
# Run the application |