fix: Remove mounting data for frontends
All checks were successful
Build Docker / Build SLDs Image (push) Successful in 17s
Build Docker / Build Main Image (push) Successful in 18s

This commit is contained in:
Nathan Woodburn 2023-11-08 18:28:33 +11:00
parent c44c17fa38
commit d8267200ac
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
2 changed files with 0 additions and 5 deletions

View File

@ -8,9 +8,6 @@ RUN --mount=type=cache,target=/root/.cache/pip \
COPY . /app COPY . /app
# Add mount point for data volume
VOLUME /data
ENTRYPOINT ["python3"] ENTRYPOINT ["python3"]
CMD ["server.py"] CMD ["server.py"]

View File

@ -7,8 +7,6 @@ RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt pip3 install -r requirements.txt
COPY . /app COPY . /app
# Add mount point for data volume
VOLUME /data
ENTRYPOINT ["python3"] ENTRYPOINT ["python3"]
CMD ["sldserver.py"] CMD ["sldserver.py"]