Skip to content

Commit

Permalink
dockerfile changes - add app volume
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulo Silva committed Apr 18, 2024
1 parent 0e19b3c commit 752aec0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ RUN apt-get update && apt-get install -y \
libjpeg-dev \
zlib1g-dev

VOLUME [ "/data", "/source", "/destination" ]
VOLUME [ "/data", "/source", "/destination", "/app" ]

WORKDIR /app

COPY . .

RUN pip install --no-cache-dir -r requirements.txt && \
ln -s /destination /app/engine/static && \
mv /app/data /data && \
ln -s /data /app
# mv /app/data /data && \
# ln -s /data /app

EXPOSE 23276

Expand Down

0 comments on commit 752aec0

Please sign in to comment.