Development

This commit is contained in:
Matthew Grotke 2026-05-27 22:06:13 -04:00
parent d9f3bd8289
commit ba16b123df

View file

@ -3,6 +3,6 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
ARG CACHE_BUST
COPY app/*.py .
COPY app/ .
EXPOSE 25327
CMD ["python", "main.py"]