Skip to content

Instantly share code, notes, and snippets.

@djnotes
Created August 30, 2020 07:12
Show Gist options
  • Save djnotes/f184380a74a4d2f98b0bbaea8c4561d3 to your computer and use it in GitHub Desktop.
Save djnotes/f184380a74a4d2f98b0bbaea8c4561d3 to your computer and use it in GitHub Desktop.
Dockerfile for MadelineProto using the Fedora 32 Docker image
FROM fedora:32
RUN dnf update -y
RUN dnf install -y git composer php php-devel php-zip php-cli php-mbstring php-xml php-intl php-json php-gmp
COPY . /app
WORKDIR /app
CMD ["php", "bot.php"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment