Skip to content
Snippets Groups Projects
Commit 65cb1a1c authored by Luka's avatar Luka
Browse files

fix(Dockerfile): Cleanup for dockerfile

parent 927ef220
No related branches found
No related tags found
No related merge requests found
FROM python:3.10-slim
RUN apt-get update
RUN apt-get install -y libpq-dev python-dev gcc
RUN apt-get install -y gcc
## make a local directory
RUN mkdir /app
......@@ -12,9 +12,6 @@ WORKDIR /app
# copy requirements.txt to /app
ADD requirements.txt .
# required to be able to install old MarkupSafe==1.0.0 version
RUN pip install --upgrade pip setuptools==45.2.0
# pip install the local requirements.txt
RUN pip install -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