mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
66ede20ff5
Bumps nginx from 1.25.3-alpine to 1.25.4-alpine. --- updated-dependencies: - dependency-name: nginx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
436 B
Docker
23 lines
436 B
Docker
FROM node:21.6.1-alpine as ui-builder
|
|
|
|
RUN mkdir /app
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json yarn.lock .yarnrc.yml /app/
|
|
COPY .yarn/releases/ /app/.yarn/releases/
|
|
|
|
RUN apk add --update --no-cache g++ make\
|
|
&& yarn install\
|
|
&& apk del g++ make
|
|
|
|
COPY . /app
|
|
|
|
RUN yarn build
|
|
|
|
FROM nginx:1.25.4-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"]
|