EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit b5caff96 authored by Fabian Schindler's avatar Fabian Schindler
Browse files

Using apt-get instead of unstable apt command in dockerfile

parent ebf2bffe
No related branches found
No related tags found
No related merge requests found
Pipeline #26530 failed
......@@ -40,11 +40,11 @@ WORKDIR /opt/core
COPY requirements.txt .
RUN apt update && \
apt install --no-install-recommends -y \
libpq-dev wait-for-it && \
apt autoremove -y && \
apt clean && \
RUN apt-get update && \
apt-get install --no-install-recommends -y \
libpq-dev wait-for-it && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
pip3 install --no-cache-dir -r requirements.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment