沈楠
90e0f3852b
Some checks failed
MJN/finance-dbt/pipeline/head There was a failure building this commit
14 lines
337 B
Docker
14 lines
337 B
Docker
FROM python:3.10.14-slim
|
|
USER 1001
|
|
WORKDIR /app
|
|
### Pip
|
|
USER root
|
|
COPY ./requirements.txt /app/
|
|
RUN pip3 config set global.index-url https://nexus.mujiannan.com:5001/repository/pypiserver/simple && \
|
|
pip install -r requirements.txt
|
|
USER 1001
|
|
## Copy files
|
|
COPY --chown=1001 . /app
|
|
## Install packges/dependencies
|
|
### Dbt
|
|
RUN dbt deps |