From d2de779f2e3bfc65b41b2c95bb355f206c884b22 Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Sun, 30 Jul 2023 14:11:41 +0000 Subject: [PATCH] Update Dockerfile --- dbrepo-analyse-service/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dbrepo-analyse-service/Dockerfile b/dbrepo-analyse-service/Dockerfile index 9e4c027a54..c706cd7938 100644 --- a/dbrepo-analyse-service/Dockerfile +++ b/dbrepo-analyse-service/Dockerfile @@ -1,9 +1,6 @@ -FROM python:3.9-alpine +FROM python:3.9-slim MAINTAINER Martin Weise <martin.weise@tuwien.ac.at> -RUN apk update && apk --no-cache add build-base gcc python3-dev libpq-dev libffi-dev bash curl py3-pandas \ - py3-sqlalchemy py3-requests py3-gevent py3-psycopg2 - WORKDIR /app COPY ./requirements.txt ./requirements.txt @@ -26,4 +23,4 @@ EXPOSE $PORT_APP ENTRYPOINT [ "python", "./pywsgi.py" ] -CMD sh -c /wait && flask run \ No newline at end of file +CMD sh -c /wait && flask run -- GitLab