Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bits_tg_bot
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Fred
bits_tg_bot
Commits
e18c5f1c
Commit
e18c5f1c
authored
Oct 09, 2020
by
JackV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add docker integration
parent
ce1cb4f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
Dockerfile
Dockerfile
+13
-0
requirements.txt
requirements.txt
+2
-0
No files found.
Dockerfile
0 → 100644
View file @
e18c5f1c
FROM
python:alpine
COPY
requirements.txt /
RUN
apk add gcc py3-cffi libffi-dev musl-dev openssl openssl-dev
&&
\
pip
install
-r
/requirements.txt
&&
\
apk del gcc libffi-dev musl-dev openssl-dev
COPY
. /app
WORKDIR
/app
ENTRYPOINT
["python", "main.py"]
requirements.txt
0 → 100644
View file @
e18c5f1c
websockets
python-telegram-bot
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment