fix: dockerfile had the wrong strings

This commit is contained in:
Lys 2023-10-18 21:44:37 +03:00
parent 05b2c3b662
commit d3c1db04c2
Signed by: lyssieth
GPG key ID: C9CF3D614FAA3940

View file

@ -21,9 +21,9 @@ WORKDIR /app
COPY ./static ./static COPY ./static ./static
ENV RUST_LOG=info ENV RUST_LOG=info
ENV RAVE_STORAGE_DIR=/data ENV RAVE_STORAGE_DIR=/storage
ENV RAVE_CACHE_DIR=/cache ENV RAVE_CACHE_DIR=/cache
VOLUME [ "/data", "/cache" ] VOLUME [ "/storage", "/cache" ]
ENTRYPOINT ["/rave"] ENTRYPOINT ["/rave"]