Skip to content
Snippets Groups Projects
Commit 5cb2f8fe authored by Matthias Stefan Bodenbenner's avatar Matthias Stefan Bodenbenner
Browse files

fixed Dockerfile

parent 7655266c
Branches
No related tags found
No related merge requests found
Pipeline #372939 passed
...@@ -4,16 +4,14 @@ FROM eclipse-temurin:11-alpine ...@@ -4,16 +4,14 @@ FROM eclipse-temurin:11-alpine
### 2. Get Python, PIP ### 2. Get Python, PIP
ENV PYTHONUNBUFFERED=1 ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python RUN apk add --update --no-cache python3 py3-pip py3-setuptools && ln -sf python3 /usr/bin/python
RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools
# 3. Copy the python dependencies definition and install it # 3. Copy the python dependencies definition and install it
RUN mkdir /home/soil-backend RUN mkdir /home/soil-backend
WORKDIR /home/soil-backend WORKDIR /home/soil-backend
COPY ./requirements.txt . COPY ./requirements.txt .
RUN pip3 install -r requirements.txt RUN pip3 install -r requirements.txt --break-system-package
# 4. Copy all required source files and resources (i.e., the jar-build of the Monticore based SOIL tool) # 4. Copy all required source files and resources (i.e., the jar-build of the Monticore based SOIL tool)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment