File tree Expand file tree Collapse file tree 3 files changed +10
-25
lines changed
Expand file tree Collapse file tree 3 files changed +10
-25
lines changed Original file line number Diff line number Diff line change 1- FROM python:2.7.10
2- MAINTAINER Mike Barrett
3-
4- COPY scripts/docker-stacker /bin/docker-stacker
5- RUN mkdir -p /stacks && pip install --upgrade pip setuptools
6- WORKDIR /stacks
7- COPY . /tmp/stacker
8- RUN pip install --upgrade pip
9- RUN pip install --upgrade setuptools
10- RUN cd /tmp/stacker && python setup.py install && rm -rf /tmp/stacker
11-
12- ENTRYPOINT ["docker-stacker" ]
13- CMD ["-h" ]
1+ FROM python:3.7-alpine
2+ RUN apk add --no-cache make
3+ WORKDIR /app
4+ COPY setup.cfg setup.py README.rst CHANGELOG.md ./
5+ COPY stacker/ ./stacker
6+ COPY scripts/ ./scripts
7+ RUN python setup.py install
8+ WORKDIR /project
9+ ENTRYPOINT ["stacker" ]
10+ CMD ["--help" ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3232
3333scripts = [
3434 "scripts/compare_env" ,
35- "scripts/docker-stacker" ,
3635 "scripts/stacker.cmd" ,
3736 "scripts/stacker" ,
3837]
You can’t perform that action at this time.
0 commit comments