mirror of
https://github.com/Rongronggg9/SlashBot.git
synced 2025-02-06 17:23:28 +08:00
create Dockerfile
This commit is contained in:
parent
fbce725cec
commit
9199e7fbd3
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -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"]
|
Loading…
Reference in New Issue
Block a user