From 9199e7fbd3016de3d1161ed94e551dd3e35bc7ea Mon Sep 17 00:00:00 2001 From: Rongrong <15956627+Rongronggg9@users.noreply.github.com> Date: Mon, 26 Oct 2020 02:25:58 +0800 Subject: [PATCH] create Dockerfile --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c1bfe0a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +# Use an official Python runtime as a parent image +FROM python:3.7-slim + +# Set the working directory to /app +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install any needed packages specified in requirements.txt +RUN pip install --trusted-host pypi.python.org -r /app/requirements.txt +# Define environment variable +ENV TOKEN X + +# Run app.py when the container launches +CMD ["python", "-u", "SlashBot.py"] \ No newline at end of file