SlashBot/Dockerfile

16 lines
452 B
Docker
Raw Normal View History

2020-10-26 02:25:58 +08:00
# 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"]