feat(api): changed Dockerfile
This commit is contained in:
parent
9c5d96e35c
commit
b0d3074ceb
1 changed files with 4 additions and 4 deletions
|
|
@ -18,10 +18,10 @@ RUN apt update && apt install -y curl && \
|
|||
rm -rf /var/lib/apt/lists/* \
|
||||
|
||||
WORKDIR /work_tmp
|
||||
COPY requirements.txt requirements.txt
|
||||
RUN pip install -r requirements.txt
|
||||
COPY sourcemap-reader/*.json ./
|
||||
RUN npm install
|
||||
COPY requirements.txt /work_tmp/requirements.txt
|
||||
RUN pip install -r /work_tmp/requirements.txt
|
||||
COPY sourcemap-reader/*.json /work_tmp/
|
||||
RUN cd /work_tmp && npm install
|
||||
|
||||
WORKDIR /work
|
||||
COPY . .
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue