1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-01-17 05:24:13 +00:00
dotfiles/legacy/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"]