diff --git a/Dockerfile b/Dockerfile index 68b00e4..0eb9e4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,9 @@ RUN apk add --no-cache postgresql-client WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY server.py . +COPY app_server.py . COPY --from=dashboard-build /dashboard/dist /app/dashboard/dist ENV PORT=8080 ENV DIST_DIR=/app/dashboard/dist EXPOSE 8080 -CMD ["python", "server.py"] +CMD ["python", "app_server.py"] diff --git a/server.py b/app_server.py similarity index 100% rename from server.py rename to app_server.py