Gros refactoring

This commit is contained in:
François Pelletier 2024-12-31 21:01:12 -05:00
parent 4a6bfc951f
commit dd22432b48
12 changed files with 18 additions and 18 deletions

View file

@ -37,7 +37,7 @@ RUN poetry config virtualenvs.create false \
COPY conf/policy.xml /etc/ImageMagick-6/policy.xml
# Expose the application port
EXPOSE 8000
EXPOSE 8080
# Copy the application code
COPY conf ./conf
@ -49,4 +49,4 @@ COPY *.py .
COPY *.lua .
# Run the application
CMD ["poetry", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["poetry", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]