feat: Add new docker image
Some checks failed
Build Docker / Build SLDs Image (push) Failing after 17s
Build Docker / Build Main Image (push) Successful in 19s

This commit is contained in:
2023-11-08 18:19:31 +11:00
parent 547d60fef9
commit bb8687df09
5 changed files with 59 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ COPY . /app
# Add mount point for data volume
VOLUME /data
CMD [ "python3", "server.py" ] & [ "python3", "sldserver.py" ]
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs