FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Switch-Bots-Python-Library/Dockerfile at main · switchcollab/Switch-Bots-Python-Library · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
switchcollab
/
Switch-Bots-Python-Library
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
12
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Switch-Bots-Python-Library
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (22 loc) · 567 Bytes
Breadcrumbs
Switch-Bots-Python-Library
/
Dockerfile
Copy path
File metadata and controls
32 lines (22 loc) · 567 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM
python:alpine
ARG
WORKDIR=/workspace
WORKDIR
$WORKDIR
COPY
. $WORKDIR
RUN
apk add --no-cache --virtual .build-deps \
gcc \
musl-dev \
libffi-dev \
openssl-dev \
&& apk add --no-cache \
bash \
git \
openssh \
&& apk del .build-deps
RUN
pip install wheel && \
pip install setuptools && \
pip install twine
ENV
VIRTUAL_ENV=$WORKDIR/src/venv
RUN
python -m venv $VIRTUAL_ENV
ENV
PATH=
"$VIRTUAL_ENV/bin:$PATH"
RUN
pip install -r $WORKDIR/requirements-dev.txt
CMD
[
"/bin/sh"
,
"-c"
,
"while sleep 1000; do :; done"
]
Back
|
FazBrowse Home
|
New Git URL