Skip to content

Commit

Permalink
chore: let's try newer alpine version
Browse files Browse the repository at this point in the history
  • Loading branch information
evereq committed Mar 28, 2024
1 parent 27d3323 commit b659f36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .deploy/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ ARG OTEL_EXPORTER_OTLP_TRACES_ENDPOINT
ARG REDIS_ENABLED
ARG REDIS_URL

FROM node:18-alpine3.17 AS dependencies
FROM node:18-alpine3.19 AS dependencies

LABEL maintainer="ever@ever.co"
LABEL org.opencontainers.image.source https://github.com/ever-co/ever-gauzy
Expand Down Expand Up @@ -164,7 +164,7 @@ COPY --chown=node:node decorate-angular-cli.js lerna.json package.json yarn.lock
RUN yarn install --network-timeout 1000000 --frozen-lockfile
# RUN apk del build-dependencies make gcc g++ python2 py2-setuptools vips-dev

FROM node:18-alpine3.17 AS prodDependencies
FROM node:18-alpine3.19 AS prodDependencies

ENV CI=true

Expand Down Expand Up @@ -218,7 +218,7 @@ RUN yarn install --network-timeout 1000000 --frozen-lockfile --production

RUN rm -r node_modules/@angular

FROM node:18-alpine3.17 AS development
FROM node:18-alpine3.19 AS development

USER node:node

Expand All @@ -228,7 +228,7 @@ COPY --chown=node:node --from=dependencies /wait /entrypoint.prod.sh /entrypoint
COPY --chown=node:node --from=dependencies /srv/gauzy .
COPY . .

FROM node:18-alpine3.17 AS build
FROM node:18-alpine3.19 AS build

WORKDIR /srv/gauzy

Expand Down Expand Up @@ -264,7 +264,7 @@ RUN if [ "$NODE_ENV" = "production" ]; then \

RUN yarn build:api:prod:docker

FROM node:18-alpine3.17 AS production
FROM node:18-alpine3.19 AS production

WORKDIR /srv/gauzy

Expand Down
6 changes: 3 additions & 3 deletions .deploy/webapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ARG GAUZY_GITHUB_APP_ID
ARG JITSU_BROWSER_URL
ARG JITSU_BROWSER_WRITE_KEY

FROM node:18-alpine3.17 AS dependencies
FROM node:18-alpine3.19 AS dependencies

LABEL maintainer="ever@ever.co"
LABEL org.opencontainers.image.source https://github.com/ever-co/ever-gauzy
Expand Down Expand Up @@ -79,7 +79,7 @@ COPY --chown=node:node decorate-angular-cli.js lerna.json package.json yarn.lock
RUN yarn install --network-timeout 1000000 --frozen-lockfile && yarn cache clean
# RUN apk del build-dependencies make gcc g++ python2 py2-setuptools vips-dev

FROM node:18-alpine3.17 AS development
FROM node:18-alpine3.19 AS development

USER node:node

Expand All @@ -89,7 +89,7 @@ COPY --chown=node:node --from=dependencies /wait /entrypoint.compose.sh /entrypo
COPY --chown=node:node --from=dependencies /srv/gauzy .
COPY . .

FROM node:18-alpine3.17 AS build
FROM node:18-alpine3.19 AS build

WORKDIR /srv/gauzy

Expand Down

0 comments on commit b659f36

Please sign in to comment.