Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
fopina committed Nov 3, 2024
1 parent c608372 commit 1ff65ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.nginx-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ COPY requirements.txt ./
# https://github.com/unbit/uwsgi/issues/1318#issuecomment-542238096
RUN CPUCOUNT=1 pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt

FROM node:20 AS yarn
FROM node:20.11.0 AS yarn

WORKDIR /app

# yarn already installed but we want to reproduce with exact version
RUN npm -g --force i [email protected].10
RUN npm -g --force i [email protected].19

COPY components/ ./components/
RUN \
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile.nginx-debian
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ COPY requirements.txt ./
# https://github.com/unbit/uwsgi/issues/1318#issuecomment-542238096
RUN CPUCOUNT=1 pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt

FROM node:20 AS yarn
FROM node:20.11.0 AS yarn

WORKDIR /app

RUN npm -g --force i [email protected]
# yarn already installed but we want to reproduce with exact version
RUN npm -g --force i [email protected]

COPY components/ ./components/
RUN \
Expand Down

0 comments on commit 1ff65ae

Please sign in to comment.