mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
17 lines
247 B
Docker
17 lines
247 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
COPY requirements.txt /
|
||
|
|
||
|
RUN apk update && \
|
||
|
apk add \
|
||
|
openssh \
|
||
|
python \
|
||
|
py-pip \
|
||
|
&& \
|
||
|
pip install -r requirements.txt
|
||
|
|
||
|
COPY connect_cloud.sh /
|
||
|
COPY connect_cloud.py /
|
||
|
|
||
|
ENTRYPOINT ["/connect_cloud.sh"]
|