Skip to content

Commit

Permalink
fix: app dir requires write permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
malhussan committed Jan 30, 2024
1 parent 53c328f commit 3a47741
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ RUN apt-get update \
curl \
&& rm -rf /var/lib/apt/lists/*

COPY --chmod=777 bin/ /app
COPY bin/ /app
RUN chmod -R 777 /app

RUN pip install --no-cache-dir -r /app/requirements.txt

Expand Down

0 comments on commit 3a47741

Please sign in to comment.