dotfiles/macos/bin/connect_aws/Dockerfile

17 lines
247 B
Docker
Raw Normal View History

2020-06-03 14:31:58 +00:00
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"]