We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0d318 commit e45489eCopy full SHA for e45489e
Dockerfile
@@ -0,0 +1,19 @@
1
+# base image for python
2
+FROM python:3.10-alpine3.16
3
+
4
+# # set working directory
5
+# WORKDIR /app
6
7
+# set the required dependencies
8
+COPY requirements.txt requirements.txt
9
+COPY requirements-dev.txt requirements-dev.txt
10
11
+# install dependencies
12
+RUN pip install -r requirements.txt
13
+RUN pip install -r requirements-dev.txt
14
15
+# copy the content of the local src directory to the working directory
16
+COPY . .
17
18
+# run the command to start the bot
19
+CMD [ "python3", "-m", "bot"]
docker-compose.yml
@@ -0,0 +1,7 @@
+version: "3"
+services:
+ gongo:
+ container_name: gongo
+ build: .
+ image: python:3.10-alpine3.16
0 commit comments