Track bundled vendor runtime sources
This commit is contained in:
63
vendor/social-auto-upload/Dockerfile
vendored
Normal file
63
vendor/social-auto-upload/Dockerfile
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
FROM node:22.21.1 AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN npm config set registry https://registry.npmmirror.com
|
||||
|
||||
COPY sau_frontend .
|
||||
|
||||
RUN npm install
|
||||
|
||||
ENV NODE_ENV=production
|
||||
ENV PATH=/app/node_modules/.bin:$PATH
|
||||
|
||||
# 替换前端中的地址
|
||||
RUN sed -i 's#\${baseUrl}##g' /app/src/views/AccountManagement.vue
|
||||
RUN sed -i "s#\${import\.meta\.env\.VITE_API_BASE_URL || 'http:\/\/localhost:5409'}##g" /app/src/api/material.js
|
||||
RUN sed -i 's#localhost:5409##g' /app/.env.production
|
||||
|
||||
RUN npm run build
|
||||
|
||||
|
||||
FROM python:3.10.19
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ENV PLAYWRIGHT_BROWSERS_PATH=/opt/playwright
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends libnss3 \
|
||||
libnspr4 \
|
||||
libdbus-1-3 \
|
||||
libatk1.0-0 \
|
||||
libatk-bridge2.0-0 \
|
||||
libatspi2.0-0 \
|
||||
libxcomposite1 \
|
||||
libxdamage1 \
|
||||
libxfixes3 \
|
||||
libxrandr2 \
|
||||
libgbm1 \
|
||||
libxkbcommon0 \
|
||||
libasound2 && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
RUN playwright install chromium-headless-shell
|
||||
|
||||
COPY . .
|
||||
|
||||
COPY --from=builder /app/dist/index.html /app
|
||||
COPY --from=builder /app/dist/assets /app/assets
|
||||
COPY --from=builder /app/dist/vite.svg /app/assets
|
||||
|
||||
RUN cp conf.example.py conf.py
|
||||
|
||||
RUN mkdir -p /app/videoFile
|
||||
RUN mkdir -p /app/cookiesFile
|
||||
|
||||
EXPOSE 5409
|
||||
|
||||
CMD ["python", "sau_backend.py"]
|
||||
Reference in New Issue
Block a user