Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -4,9 +4,7 @@ WORKDIR /tavern
|
|
4 |
RUN git clone https://github.com/SillyTavern/SillyTavern -b staging .
|
5 |
RUN npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force
|
6 |
RUN chmod -R 777 /tavern
|
7 |
-
EXPOSE 7860
|
8 |
COPY . .
|
9 |
RUN rm -rf /tavern/data/*
|
10 |
-
RUN chmod +x /tavern/entrypoint.sh
|
11 |
-
RUN chmod +x /tavern/webdav-sync
|
12 |
CMD ["/tavern/entrypoint.sh"]
|
|
|
4 |
RUN git clone https://github.com/SillyTavern/SillyTavern -b staging .
|
5 |
RUN npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force
|
6 |
RUN chmod -R 777 /tavern
|
|
|
7 |
COPY . .
|
8 |
RUN rm -rf /tavern/data/*
|
9 |
+
RUN chmod +x /tavern/entrypoint.sh /tavern/webdav-sync
|
|
|
10 |
CMD ["/tavern/entrypoint.sh"]
|