new docker images

This commit is contained in:
cupcakearmy
2019-06-17 19:50:39 +02:00
parent 46ca23eb75
commit 266c286f47
2 changed files with 5 additions and 15 deletions

View File

@@ -1,17 +1,8 @@
# BUILDER
FROM python:3.7-alpine as builder
RUN apk add --no-cache alpine-sdk libffi-dev openssl-dev python3-dev freetype-dev
COPY requirements.txt .
RUN pip install -r requirements.txt
# APP
FROM python:3.7-alpine
RUN apk add --no-cache libstdc++ freetype
FROM python:3.7-slim
WORKDIR /app
COPY --from=builder /root/.cache /root/.cache
COPY --from=builder requirements.txt .
COPY requirements.txt .
RUN pip install -r requirements.txt && rm -rf /root/.cache
#COPY src .
#CMD ["python", "-u", "/app/Mercatus.py"]
COPY src .
CMD ["python", "-u", "/app/Mercatus.py"]