We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b77e1e1 commit c9f663dCopy full SHA for c9f663d
Dockerfile.dev
@@ -30,7 +30,7 @@ COPY . /app/
30
WORKDIR /app/backend
31
RUN python3 -m venv /opt/venv
32
RUN /opt/venv/bin/pip install --upgrade pip
33
-RUN /opt/venv/bin/pip install -r requirements.txt -r dev-requirements.txt
+RUN --mount=type=cache,target=/root/.cache/pip /opt/venv/bin/pip install -r requirements.txt -r dev-requirements.txt
34
35
WORKDIR /app
36
RUN mkdir -p /etc/cron.d && mv /app/setup_utils/cronjob.txt /etc/cron.d/cronjob
dev.sh
@@ -4,4 +4,6 @@ cat env.example > .env
4
cd ./cli
5
6
{ yarn && yarn build; } > /dev/null 2>&1
7
-yarn start
+yarn start
8
+
9
+cd ..
0 commit comments