mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
eb0ddb27a0
Bumps node from 21.2.0-alpine to 21.3.0-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
600 B
Docker
27 lines
600 B
Docker
FROM node:21.3.0-alpine as ui-builder
|
|
|
|
RUN mkdir /app
|
|
|
|
WORKDIR /app
|
|
|
|
# ENV PATH /usr/src/app/node_modules/.bin:$PATH
|
|
|
|
COPY package.json /app/package.json
|
|
COPY yarn.lock /app/yarn.lock
|
|
|
|
RUN apk add --update --no-cache python3 g++ make\
|
|
&& yarn \
|
|
&& apk del python3 g++ make
|
|
|
|
COPY . /app
|
|
|
|
# The below flag should be removed, it's an incompatibility between
|
|
# webpack and node17
|
|
RUN NODE_OPTIONS=--openssl-legacy-provider yarn build
|
|
|
|
FROM nginx:1.25.3-alpine
|
|
COPY --from=ui-builder /app/dist /etc/nginx/html
|
|
COPY --from=ui-builder /app/nginx.conf /etc/nginx/nginx.conf
|
|
EXPOSE 80
|
|
CMD ["nginx"]
|