initial framework
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM python:3.10
|
||||
ENV dockerized=true
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY Pipfile Pipfile.lock ./
|
||||
|
||||
RUN pip install pipenv && pipenv install --system --deploy
|
||||
|
||||
COPY bot .
|
||||
|
||||
CMD ["python", "main.py"]
|
Reference in New Issue
Block a user