4 changed files with 19 additions and 3 deletions
@ -1,6 +1,6 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<project version="4"> |
|||
<component name="ProjectRootManager"> |
|||
<component name="ProjectRootManager" version="2" languageLevel="JDK_19" project-jdk-name="Python 3.10 (2)" project-jdk-type="Python SDK"> |
|||
<output url="file://$PROJECT_DIR$/out" /> |
|||
</component> |
|||
</project> |
|||
@ -0,0 +1,7 @@ |
|||
FROM python:3.10 |
|||
WORKDIR /app |
|||
COPY *.py /app |
|||
COPY botExtensions/ /app/botExtensions |
|||
COPY webExtensions/ /app/webExtensions |
|||
ENV PYTHONUNBUFFERED 1 |
|||
ENTRYPOINT ["python3", "service.py"] |
|||
Loading…
Reference in new issue