remove need for bash
This commit is contained in:
parent
47d7e28e37
commit
0f17495982
2 changed files with 2 additions and 4 deletions
|
@ -1,12 +1,10 @@
|
||||||
FROM python:3.5-alpine
|
FROM python:3.5-alpine
|
||||||
|
|
||||||
# https://github.com/yikaus/docker-alpine-bash/blob/34b9807/Dockerfile#L4
|
RUN apk add --update jq
|
||||||
RUN apk add --update bash
|
|
||||||
|
|
||||||
RUN pip install --upgrade pip
|
RUN pip install --upgrade pip
|
||||||
RUN pip install --upgrade awscli
|
RUN pip install --upgrade awscli
|
||||||
|
|
||||||
ADD assets/ /opt/resource/
|
ADD assets/ /opt/resource/
|
||||||
# RUN chmod a+x
|
|
||||||
|
|
||||||
CMD echo Simple S3 Resource ready.
|
CMD echo Simple S3 Resource ready.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
set -x
|
set -x
|
||||||
|
|
Loading…
Reference in a new issue