Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -48,6 +48,12 @@ ADD launch.sh launch.sh
|
|
48 |
RUN curl -JLO https://github.com/bincooo/SillyTavern-Docker/releases/download/v1.0.0/git-batch
|
49 |
RUN chmod +x launch.sh && chmod +x git-batch && ./git-batch -h
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
# Cleanup unnecessary files
|
52 |
RUN \
|
53 |
echo "*** Cleanup ***" && \
|
|
|
48 |
RUN curl -JLO https://github.com/bincooo/SillyTavern-Docker/releases/download/v1.0.0/git-batch
|
49 |
RUN chmod +x launch.sh && chmod +x git-batch && ./git-batch -h
|
50 |
|
51 |
+
# Copy default chats, characters and user avatars to <folder>.default folder
|
52 |
+
RUN \
|
53 |
+
rm -f "config.yaml" || true && \
|
54 |
+
ln -s "./config/config.yaml" "config.yaml" || true && \
|
55 |
+
mkdir "config" || true
|
56 |
+
|
57 |
# Cleanup unnecessary files
|
58 |
RUN \
|
59 |
echo "*** Cleanup ***" && \
|