Bulk rename/move files to '8' directories
Perform a bulk rename/move of many files and folders: paths previously prefixed with '01', '02', '03', '04', etc. were relocated to equivalent paths prefixed with '8'. Changes are path-only (R100 renames) and do not modify file contents; this reorganizes the repository structure.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
ENV PYTHONDONTWRITEBYTECODE=1 \
|
||||
PYTHONUNBUFFERED=1
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install --no-cache-dir "flask>=3.1.2"
|
||||
|
||||
COPY LR3 /app/LR3
|
||||
COPY data /app/data
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["flask", "--app", "LR3/irfm_lr3.py", "run", "--host=0.0.0.0", "--port=5000"]
|
||||
Reference in New Issue
Block a user