Skip to content

Commit

Permalink
Merge pull request #1 from alumina-lang/upgrades
Browse files Browse the repository at this point in the history
chore: Upgrade dependencies and base image
  • Loading branch information
tibordp authored May 25, 2024
2 parents 96536bc + 6635ee1 commit bf384dd
Show file tree
Hide file tree
Showing 3 changed files with 2,137 additions and 2,152 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN yarn install --frozen-lockfile
COPY . .
RUN EXAMPLES_REV=${EXAMPLES_REV} yarn build

FROM ubuntu:22.04 as deps
FROM ubuntu:24.04 as deps
RUN apt-get update && apt-get install -y \
autoconf \
bison \
Expand All @@ -29,7 +29,7 @@ WORKDIR /build/libbacktrace
RUN git clone https:/ianlancetaylor/libbacktrace.git .
RUN ./configure && make -j8

FROM ubuntu:22.04 as combined
FROM ubuntu:24.04 as combined

WORKDIR /app

Expand All @@ -40,7 +40,7 @@ COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
COPY --from=builder /app/public ./public

FROM ubuntu:22.04
FROM ubuntu:24.04
RUN apt-get update && \
apt-get install -y ca-certificates curl gnupg && \
mkdir -p /etc/apt/keyrings && \
Expand All @@ -51,7 +51,7 @@ RUN apt-get update && \
gcc \
libnl-3-200 \
libnl-route-3-200 \
libprotobuf23 \
libprotobuf32t64 \
gosu \
&& rm -rf /var/lib/apt/lists/*

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@
"@mui/material": "^5.14.15",
"adm-zip": "^0.5.9",
"ansi-to-html": "^0.7.2",
"monaco-editor": "^0.47.0",
"next": "14.1.3",
"monaco-editor": "^0.49.0",
"next": "14.2.3",
"next-pwa": "^5.6.0",
"notistack": "^3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tmp": "^0.2.1",
"use-font-face-observer": "^1.2.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.3",
"@types/node": "20.11.27",
"@types/react": "18.2.66",
"@types/node": "20.12.12",
"@types/react": "18.3.3",
"@types/temp": "^0.9.3",
"@types/tmp": "^0.2.5",
"eslint": "8.57.0",
"eslint-config-next": "14.1.3",
"typescript": "5.4.2"
"eslint": "9.3.0",
"eslint-config-next": "14.2.3",
"typescript": "5.4.5"
}
}
Loading

0 comments on commit bf384dd

Please sign in to comment.