* feat(api): use same container for sourcemaps and utilities * feat(utilities): moved to same image as chalice * feat(api&utilities): merge in a single image without redundancy
16 lines
No EOL
434 B
Docker
16 lines
No EOL
434 B
Docker
FROM python:3.6-slim
|
|
LABEL Maintainer="Rajesh Rajendran<rjshrjndrn@gmail.com>"
|
|
WORKDIR /work
|
|
COPY . .
|
|
RUN pip install -r requirements.txt -t ./vendor --upgrade
|
|
RUN pip install chalice==1.22.2
|
|
|
|
# Add Tini
|
|
# Startup daemon
|
|
ENV TINI_VERSION v0.19.0
|
|
ARG envarg
|
|
ENV ENTERPRISE_BUILD ${envarg}
|
|
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
|
|
RUN chmod +x /tini
|
|
ENTRYPOINT ["/tini", "--"]
|
|
CMD ./entrypoint.sh |